xgo/runtime/frame.go

13 lines
186 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"
)
type Frame struct {
fn *objects.CompiledFunction
freeVars []*objects.Object
ip int
basePointer int
}