xgo/vm/frame.go

13 lines
181 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package vm
import (
"github.com/d5/tengo/objects"
)
type Frame struct {
fn *objects.CompiledFunction
freeVars []*objects.Object
ip int
basePointer int
}