JSDOC/Scope.js
authorAlan Knowles <alan@akbkhome.com>
Fri, 16 Jul 2010 04:49:55 +0000 (12:49 +0800)
committerAlan Knowles <alan@akbkhome.com>
Fri, 16 Jul 2010 04:49:55 +0000 (12:49 +0800)
JSDOC/Scope.js

index 6b63663..59a362e 100644 (file)
@@ -55,7 +55,7 @@ Scope.prototype = {
     protectedVars : {}, // only used by to parent..
     declareIdentifier : function(symbol, token) {
         
-        print("SCOPE : " + this.gid +  " : " + token.toString()+"");
+        print("SCOPE : " + this.gid +  " :SYM: " + symbol + " " + token.toString()+"");
         
         if (typeof(this.identifiers[symbol])== 'undefined') {
             
@@ -70,6 +70,8 @@ Scope.prototype = {
                 // then it's global... 
                 this.identifiers[symbol].toMunge  = false;
         }
+         
+        
         this.addToParentScope(symbol);
         return this.identifiers[symbol];
     },