blob: 90151a1ed691ad983ce2e132e57eb09cb59fa083 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
}
|