From d9bb2a807cfede2921478e4130e96a28370e2d71 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 15 Jul 2010 15:48:21 +0800 Subject: [PATCH] JSDOC/ScopeParser.js --- JSDOC/ScopeParser.js | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/JSDOC/ScopeParser.js b/JSDOC/ScopeParser.js index 87b124b..be4db58 100644 --- a/JSDOC/ScopeParser.js +++ b/JSDOC/ScopeParser.js @@ -694,29 +694,8 @@ ScopeParser.prototype = { case 'STRN': // used for object lit detection.. if (this.mode == 'BUILDING_SYMBOL_TREE') print("EXPR-STR:" + JSON.stringify(token, null, 4)); - if (this.ts.lookTok(-1).data == "{" && this.ts.lookTok(1).data == ":" ) { - // then we are in an object lit.. -> we need to flag the brace as such... - isObjectLitAr.pop(); - isObjectLitAr.push(true); - //print(">>>>> EXP PUSH(true)"); - } - - + - isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1]; - if (isInObjectLitAr && this.ts.lookTok(1).data == ":" && - ( this.ts.lookTok(-1).data == "{" || this.ts.lookTok(-1).data == "," )) { - // see if we can replace.. - // remove the quotes.. - var str = token.data.substring(1,token.data.length-1); - if (/^[a-z_]+$/i.test(str) && ScopeParser.idents.indexOf(str) < 0) { - token.outData = str; - } - - - - } - break; -- 2.39.2