From 3dc4407e1bedd4602037742c7cc384eb0535ffac Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 16 Jul 2010 14:06:59 +0800 Subject: [PATCH] JSDOC/ScopeParser.js --- JSDOC/ScopeParser.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/JSDOC/ScopeParser.js b/JSDOC/ScopeParser.js index fb787b9..6131c21 100644 --- a/JSDOC/ScopeParser.js +++ b/JSDOC/ScopeParser.js @@ -526,7 +526,7 @@ ScopeParser.prototype = { if (token.type != 'KEYW') { break; } - print('SCOPE-KEYW:' + token.toString()); + //print('SCOPE-KEYW:' + token.toString()); // print("Check eval:"); symbol = token.data; @@ -535,7 +535,7 @@ ScopeParser.prototype = { if (token.name == "EVAL") { - print(JSON.stringify(token, null,4)); + //print(JSON.stringify(token, null,4)); // look back one and see if we can find a comment!!! //if (this.ts.look(-1).type == "COMM") { if (token.prefix && token.prefix.match(/eval/)) { @@ -785,7 +785,7 @@ ScopeParser.prototype = { symbol = token.data; - //if (this.mode == 'BUILDING_SYMBOL_TREE') { + if (this.mode == 'BUILDING_SYMBOL_TREE') { if (token.name == "EVAL") { //print(JSON.stringify(token,null,4)); @@ -816,7 +816,7 @@ ScopeParser.prototype = { } break; - //} + } default: //if (this.mode == 'BUILDING_SYMBOL_TREE') // print("EXPR-SKIP:" + JSON.stringify(token, null, 4)); -- 2.39.2