2019-01-09 10:17:42 +03:00
|
|
|
package compiler
|
|
|
|
|
2019-02-21 03:26:11 +03:00
|
|
|
import "github.com/d5/tengo/compiler/source"
|
|
|
|
|
2019-01-15 09:24:33 +03:00
|
|
|
// CompilationScope represents a compiled instructions
|
|
|
|
// and the last two instructions that were emitted.
|
2019-01-09 10:17:42 +03:00
|
|
|
type CompilationScope struct {
|
2019-03-24 12:23:38 +03:00
|
|
|
instructions []byte
|
|
|
|
symbolInit map[string]bool
|
|
|
|
sourceMap map[int]source.Pos
|
2019-01-09 10:17:42 +03:00
|
|
|
}
|