2019-01-11 13:27:28 +03:00
|
|
|
package runtime
|
2019-01-09 10:17:42 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/d5/tengo/objects"
|
|
|
|
)
|
|
|
|
|
2019-01-15 09:24:33 +03:00
|
|
|
// Frame represents a function call frame.
|
2019-01-09 10:17:42 +03:00
|
|
|
type Frame struct {
|
|
|
|
fn *objects.CompiledFunction
|
|
|
|
freeVars []*objects.Object
|
|
|
|
ip int
|
|
|
|
basePointer int
|
|
|
|
}
|