From: Alan Knowles Date: Fri, 16 Jul 2010 06:05:41 +0000 (+0800) Subject: JSDOC/ScopeParser.js X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=f52e5ba7d42065a83ee80f1a756b0855b8ac81db;ds=sidebyside JSDOC/ScopeParser.js --- diff --git a/JSDOC/ScopeParser.js b/JSDOC/ScopeParser.js index db7a70a..0f776a6 100644 --- a/JSDOC/ScopeParser.js +++ b/JSDOC/ScopeParser.js @@ -775,7 +775,7 @@ ScopeParser.prototype = { //if (this.mode == 'BUILDING_SYMBOL_TREE') // print("EXPR-KEYW:" + JSON.stringify(token, null, 4)); - print('EXPR-KEYW:' + token.toString()); + //print('EXPR-KEYW:' + token.toString()); if (token.name == "FUNCTION") { this.parseFunctionDeclaration(); @@ -788,14 +788,14 @@ ScopeParser.prototype = { //if (this.mode == 'BUILDING_SYMBOL_TREE') { if (token.name == "EVAL") { - print(JSON.stringify(token,null,4)); + //print(JSON.stringify(token,null,4)); if (token.prefix && token.prefix.match(/eval:var:/g)) { // look for eval:var:noreplace\n print("GOT MATCH?"); var _t = this; token.prefix.replace(/eval:var:([a-z]+)/ig, function(m, a) { - print("PROTECT: " + a); + //print("PROTECT: " + a); var hi = _t.getIdentifier(a, currentScope, token);