JSDOC/Scope.js
authorAlan Knowles <alan@akbkhome.com>
Thu, 15 Jul 2010 08:37:09 +0000 (16:37 +0800)
committerAlan Knowles <alan@akbkhome.com>
Thu, 15 Jul 2010 08:37:09 +0000 (16:37 +0800)
JSDOC/Scope.js

index 4845435..5179205 100644 (file)
@@ -25,7 +25,7 @@ function Scope(braceN, parent, startTokN, lastIdent)
     this.ident = lastIdent;
     this.gid = Scope.gid++;
     
-    //println("ADD SCOPE(" + this.id + ") TO "+ (parent ? this.parent.id : 'TOP') + "<BR/>");
+    println("ADD SCOPE(" + this.gid + ") TO "+ (parent ? this.parent.gid : 'TOP') + "<BR/>");
     
     if (parent) {
         this.parent.subScopes.push(this);