JSDOC/Scope.js
[gnome.introspection-doc-generator] / JSDOC / Scope.js
index 5179205..6a243e1 100644 (file)
@@ -25,7 +25,7 @@ function Scope(braceN, parent, startTokN, lastIdent)
     this.ident = lastIdent;
     this.gid = Scope.gid++;
     
-    println("ADD SCOPE(" + this.gid + ") TO "+ (parent ? this.parent.gid : 'TOP') + "<BR/>");
+    print("ADD SCOPE(" + this.gid + ") TO "+ (parent ? this.parent.gid : 'TOP'));
     
     if (parent) {
         this.parent.subScopes.push(this);
@@ -54,7 +54,7 @@ Scope.prototype = {
     protectedVars : {}, // only used by to parent..
     declareIdentifier : function(symbol, token) {
         
-        print("SCOPE : " + this.gid + " ADD IDENT(" + this.id + "):" + token.toString()+"");
+        print("SCOPE : " + this.gid +  " : " + token.toString()+"");
         
         if (typeof(this.identifiers[symbol])== 'undefined') {