summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/runtime/frame.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/d5/tengo/runtime/frame.go')
-rw-r--r--vendor/github.com/d5/tengo/runtime/frame.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/vendor/github.com/d5/tengo/runtime/frame.go b/vendor/github.com/d5/tengo/runtime/frame.go
deleted file mode 100644
index cbaadbdb..00000000
--- a/vendor/github.com/d5/tengo/runtime/frame.go
+++ /dev/null
@@ -1,13 +0,0 @@
-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
-}