aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/robertkrimen/otto/scope.go
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/robertkrimen/otto/scope.go')
-rw-r--r--Godeps/_workspace/src/github.com/robertkrimen/otto/scope.go34
1 files changed, 0 insertions, 34 deletions
diff --git a/Godeps/_workspace/src/github.com/robertkrimen/otto/scope.go b/Godeps/_workspace/src/github.com/robertkrimen/otto/scope.go
deleted file mode 100644
index b80808434..000000000
--- a/Godeps/_workspace/src/github.com/robertkrimen/otto/scope.go
+++ /dev/null
@@ -1,34 +0,0 @@
-package otto
-
-// _scope:
-// entryFile
-// entryIdx
-// top?
-// outer => nil
-
-// _stash:
-// lexical
-// variable
-//
-// _thisStash (ObjectEnvironment)
-// _fnStash
-// _dclStash
-
-// An ECMA-262 ExecutionContext
-type _scope struct {
- lexical _stash
- variable _stash
- this *_object
- eval bool // Replace this with kind?
- outer *_scope
-
- frame _frame
-}
-
-func newScope(lexical _stash, variable _stash, this *_object) *_scope {
- return &_scope{
- lexical: lexical,
- variable: variable,
- this: this,
- }
-}