diff options
Diffstat (limited to 'lib/scope.js')
-rw-r--r-- | lib/scope.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/scope.js b/lib/scope.js index f8ecedb5..df7b2076 100644 --- a/lib/scope.js +++ b/lib/scope.js @@ -373,14 +373,6 @@ AST_Symbol.DEFMETHOD("unreferenced", function(){ && !(this.scope.uses_eval || this.scope.uses_with); }); -AST_Symbol.DEFMETHOD("undeclared", function(){ - return this.definition().undeclared; -}); - -AST_LabelRef.DEFMETHOD("undeclared", return_false); - -AST_Label.DEFMETHOD("undeclared", return_false); - AST_Symbol.DEFMETHOD("definition", function(){ return this.thedef; }); |