Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Interpreter ¶
type Interpreter struct {
// contains filtered or unexported fields
}
Interpreter is a language interpreter
func NewInterpreter ¶
func NewInterpreter(mode InterpreterMode, cache bool) *Interpreter
NewInterpreter creates a new interpreter
type InterpreterMode ¶
type InterpreterMode int
InterpreterMode is the mode of the interpreter
const ( // ModeDebug writes debug information to file ModeDebug InterpreterMode = iota // ModeProduction is the default mode ModeProduction // ModeTest is the test mode ModeTest )
Click to show internal directories.
Click to hide internal directories.