X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScopeParser.js;h=be4db58d45aa2dfe82a6c952f5535ee7575ee026;hp=87b124b8c44d0009abc6ce673d778050291f9ff2;hb=d9bb2a807cfede2921478e4130e96a28370e2d71;hpb=7199fe4b02cc78983dcf6720159cb7bf5feeee9a 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;