xgo/runtime/frame.go

14 lines
229 B
Go
Raw Normal View History

2019-01-11 13:27:28 +03:00
package runtime
2019-01-09 10:17:42 +03:00
import (
"github.com/d5/tengo/objects"
)
// Frame represents a function call frame.
2019-01-09 10:17:42 +03:00
type Frame struct {
fn *objects.CompiledFunction
freeVars []*objects.Object
ip int
basePointer int
}