From 692c6379cbf70601b408f2017b863f21e9aa8fd6 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 15 Jul 2010 13:02:18 +0800 Subject: [PATCH] JSDOC/ScopeParser.js --- JSDOC/ScopeParser.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/JSDOC/ScopeParser.js b/JSDOC/ScopeParser.js index a26c236..0eae106 100644 --- a/JSDOC/ScopeParser.js +++ b/JSDOC/ScopeParser.js @@ -255,7 +255,8 @@ ScopeParser.prototype = { token = this.ts.lookTok(1); while (token) { // this.timerPrint("parseScope AFTER lookT: " + token.toString()); - this.dumpToken(token , this.scopes, this.braceNesting); + //this.dumpToken(token , this.scopes, this.braceNesting); + print(token.toString()); //this.log(token.data); if (token.type == 'NAME') { // print('*' + token.data); @@ -264,7 +265,7 @@ ScopeParser.prototype = { case "KEYW.VAR": case "KEYW.CONST": // not really relivant as it's only mozzy that does this. - print ("GOT VAR"); + //this.log("parseScope GOT VAR/CONST : " + token.toString()); while (true) { token = this.ts.nextTok(); -- 2.39.2