xgo/runtime/frame.go
2019-01-11 02:27:28 -08:00

12 lines
186 B
Go

package runtime
import (
"github.com/d5/tengo/objects"
)
type Frame struct {
fn *objects.CompiledFunction
freeVars []*objects.Object
ip int
basePointer int
}