xgo/compiler/compilation_scope.go
2019-02-02 22:22:40 -08:00

9 lines
257 B
Go

package compiler
// CompilationScope represents a compiled instructions
// and the last two instructions that were emitted.
type CompilationScope struct {
instructions []byte
lastInstructions [2]EmittedInstruction
symbolInit map[string]bool
}