From: Alan Knowles Date: Tue, 6 Jul 2010 23:28:02 +0000 (+0800) Subject: JSDOC/Walker2.js X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=442c1512a6bf94e4f3548d3b197a3ecff6382af7 JSDOC/Walker2.js --- diff --git a/JSDOC/Walker2.js b/JSDOC/Walker2.js index a153318..7b4ca3f 100644 --- a/JSDOC/Walker2.js +++ b/JSDOC/Walker2.js @@ -156,7 +156,7 @@ Walker2 = XObject.define( //print(JSON.stringify(this.ts, null, 4)); Seed.quit(); while (null != (token = this.ts.next())) { - print("TOK"+ token.toString()); + //print("TOK"+ token.toString()); // this.timerPrint("parseScope AFTER lookT: " + token.toString()); if (token.is('COMM')) { @@ -179,7 +179,7 @@ Walker2 = XObject.define( // it's a scope changer.. if (newDoc.getTag("scope").length) { - print("Walker2 : doctag changes scope"); + //print("Walker2 : doctag changes scope"); //throw "done"; scope.ident = '$private$|' + newDoc.getTag("scope")[0].desc; continue; @@ -189,7 +189,7 @@ Walker2 = XObject.define( if (newDoc.getTag("scopeAlias").length) { //print(newDoc.getTag("scopeAlias").toSource()); // @scopeAlias a=b - print("Walker2 : doctag changes scope (alias)"); + //print("Walker2 : doctag changes scope (alias)"); var sal = newDoc.getTag("scopeAlias")[0].desc.split("="); aliases[sal[0]] = sal[1]; @@ -199,7 +199,7 @@ Walker2 = XObject.define( /// got a doc comment.. //token.data might be this.??? (not sure though) - print("Walker2 : setting currentDoc"); + //print("Walker2 : setting currentDoc"); this.currentDoc = newDoc; continue; }