12 lines
186 B
Go
12 lines
186 B
Go
package runtime
|
|
|
|
import (
|
|
"github.com/d5/tengo/objects"
|
|
)
|
|
|
|
type Frame struct {
|
|
fn *objects.CompiledFunction
|
|
freeVars []*objects.Object
|
|
ip int
|
|
basePointer int
|
|
}
|