mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-15 15:40:27 +00:00
14 lines
229 B
Go
14 lines
229 B
Go
|
package runtime
|
||
|
|
||
|
import (
|
||
|
"github.com/d5/tengo/objects"
|
||
|
)
|
||
|
|
||
|
// Frame represents a function call frame.
|
||
|
type Frame struct {
|
||
|
fn *objects.CompiledFunction
|
||
|
freeVars []*objects.Object
|
||
|
ip int
|
||
|
basePointer int
|
||
|
}
|