Interpreter.this

Constructs a new Interpreter with a global environment. Note that all calls to evaluate run in a new environment below the global environment. This allows keywords such as let and const to not pollute the global namespace. However, scripts can use var to declare variables that are global.

class Interpreter
this
(
bool printVMDebugInfo = false
)

Parameters

printVMDebugInfo bool

This option, if true, indicates to print very verbose data while executing bytecode.

Meta