5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-07 04:36:17 +00:00

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
}