JSDOC/ScopeParser.js
authoralan <alan@alanfast.akbkhome.com>
Mon, 19 Apr 2010 03:42:13 +0000 (11:42 +0800)
committeralan <alan@alanfast.akbkhome.com>
Mon, 19 Apr 2010 03:42:13 +0000 (11:42 +0800)
JSDOC/ScopeParser.js

index 7bd7b00..143cbd7 100644 (file)
@@ -126,7 +126,7 @@ ScopeParser.prototype = {
         
         
         
-        this.globalScope = new JSDOC.Scope(-1, false, -1, '');
+        this.globalScope = new  Scope(-1, false, -1, '');
         indexedScopes = { 0 : this.globalScope };
         
         this.mode = 'BUILDING_SYMBOL_TREE';
@@ -687,7 +687,7 @@ ScopeParser.prototype = {
 
         //assert token.getType() == Token.LP;
         if (this.mode == 'BUILDING_SYMBOL_TREE') {
-            fnScope = new JSDOC.Scope(this.braceNesting, currentScope, token.n, '');
+            fnScope = new Scope(this.braceNesting, currentScope, token.n, '');
             
             //println("STORING SCOPE" + this.ts.cursor);