5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-07 06:46:16 +00:00

14 lines
232 B
Go
Raw Normal View History

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
}