xgo/compiler/compilation_scope.go

10 lines
257 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package compiler
// CompilationScope represents a compiled instructions
// and the last two instructions that were emitted.
2019-01-09 10:17:42 +03:00
type CompilationScope struct {
instructions []byte
lastInstructions [2]EmittedInstruction
2019-02-02 10:27:29 +03:00
symbolInit map[string]bool
2019-01-09 10:17:42 +03:00
}