5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 10:12:31 +00:00
matterbridge/vendor/github.com/d5/tengo/runtime/frame.go

14 lines
232 B
Go

package runtime
import (
"github.com/d5/tengo/objects"
)
// Frame represents a function call frame.
type Frame struct {
fn *objects.CompiledFunction
freeVars []*objects.ObjectPtr
ip int
basePointer int
}