mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
14 lines
232 B
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
|
|
}
|