X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FScope.js;h=5489651eb033e9f70d75219295e636391535acf9;hb=e5ac31fe1a1ce1bef6c3e30c10c539005ab999f4;hp=484543556ec0b9eecc0ed2e2ea75b22a209bb6d3;hpb=50f6f10a6c30a6be9354a0414ae6682a5401d2ae;p=gnome.introspection-doc-generator diff --git a/JSDOC/Scope.js b/JSDOC/Scope.js index 4845435..5489651 100644 --- a/JSDOC/Scope.js +++ b/JSDOC/Scope.js @@ -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') + "
"); + 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') {