JSDOC/Scope.js
[gnome.introspection-doc-generator] / JSDOC / Scope.js
index 84e86da..afd488d 100644 (file)
@@ -6,7 +6,7 @@
 * // FIXME - I need this to do next() without doccomments..
 */
 
-Identifier = imports['JSDOC/Identifier.js'].Identifier
+Identifier = imports.Identifier.Identifier
 XObject = imports.XObject.XObject; 
 
 
@@ -23,7 +23,7 @@ function Scope(braceN, parent, startTokN, lastIdent)
     this.subScopes = [];
     this.hints = { };
     this.ident = lastIdent;
-    
+    this.gid = Scope.gid++;
     
     //println("ADD SCOPE(" + this.id + ") TO "+ (parent ? this.parent.id : 'TOP') + "<BR/>");
     
@@ -54,7 +54,7 @@ Scope.prototype = {
     protectedVars : {}, // only used by to parent..
     declareIdentifier : function(symbol, token) {
         
-        //println("ADD IDENT(" + this.id + "):<B>" + symbol+"</B><BR/>");
+        print("ADD IDENT(" + this.id + "):" + symbol+"");
         
         if (typeof(this.identifiers[symbol])== 'undefined') {
             
@@ -313,4 +313,4 @@ XObject.extend(Scope, {
 })
 // init the scope constants..
 Scope.init();
\ No newline at end of file
+Scope.gid = 0;
\ No newline at end of file