blob: 41e7876b7b0a364dd7e3ea73c4815ce7ab057755 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package compiler
import "github.com/d5/tengo/compiler/source"
// CompilationScope represents a compiled instructions
// and the last two instructions that were emitted.
type CompilationScope struct {
instructions []byte
symbolInit map[string]bool
sourceMap map[int]source.Pos
}
|