xgo/compiler/compilation_scope.go

9 lines
223 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
}