X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FScopeParser.js;h=1db73ddf0a99d92704deb82313ccb947ba31fb1d;hp=008eca1f59368206e2291f602a29a77b84d6b268;hb=2ab35f5dd04eca02c13186ef110671609824ec0f;hpb=3002a1f318fb7d0caa4641992fa6fc83a24b2386 diff --git a/JSDOC/ScopeParser.js b/JSDOC/ScopeParser.js index 008eca1..1db73dd 100644 --- a/JSDOC/ScopeParser.js +++ b/JSDOC/ScopeParser.js @@ -141,7 +141,7 @@ ScopeParser.prototype = { this.braceNesting = 0; this.scopes = []; - + //print(JSON.stringify(this.ts.tokens, null,4)); this.globalScope = new Scope(-1, false, -1, ''); @@ -258,7 +258,7 @@ ScopeParser.prototype = { while (true) { token = this.ts.nextTok(); //!this.debug|| print( token.toString()); - //print('SCOPE-VAR-VAL:' + token.toString()); + print('SCOPE-VAR-VAL:' + JSON.stringify(token, null, 4)); if (!token) { // can return false at EOF! break; } @@ -300,7 +300,21 @@ ScopeParser.prototype = { } else { //var bn = this.braceNesting; var bn = this.braceNesting; - this.parseExpression(); + var nts = []; + while (true) { + if (!token || token.type == 'VOID' || token.data == ',') { + break; + } + nts.push(token); + token = this.ts.nextTok(); + } + if (nts.length) { + var TS = this.ts; + this.ts = new TokenStream(nts); + this.parseExpression(); + this.ts = TS; + } + this.braceNesting = bn; //this.braceNesting = bn; //this.logR("parseScope DONE : ParseExpression - tok is:" + this.ts.lookT(0).toString()); @@ -412,7 +426,7 @@ ScopeParser.prototype = { break; case "KEYW.CATCH": - //print('SCOPE-CATCH:' + token.toString()); + print('SCOPE-CATCH:' + token.toString()); //println(""+token.data+""); this.parseCatch(); break; @@ -809,10 +823,12 @@ ScopeParser.prototype = { var token; var currentScope; var identifier; - + //token = getToken(-1); //assert token.getType() == Token.CATCH; token = this.ts.nextTok(); + + print(JSON.stringify(token,null,4)); //assert token.getType() == Token.LP; ( //token = this.ts.nextTok(); //assert token.getType() == Token.NAME; @@ -824,13 +840,13 @@ ScopeParser.prototype = { // We must declare the exception identifier in the containing function // scope to avoid errors related to the obfuscation process. No need to // display a warning if the symbol was already declared here... - currentScope.declareIdentifier(symbol, token); + currentScope.declareIdentifier(symbol, token.items[0]); } else { //?? why inc the refcount?? - that should be set when building the tree??? - identifier = this.getIdentifier(symbol, currentScope, token); + identifier = this.getIdentifier(symbol, currentScope, token.items[0]); identifier.refcount++; } - + token = this.ts.nextTok(); //assert token.getType() == Token.RP; // ) }, @@ -864,7 +880,9 @@ ScopeParser.prototype = { if (token.name == "RETURN") { token = this.ts.nextTok(); } - + if (token.name == "FUNCTION") { + token = this.ts.nextTok(); + } //assert token.getType() == Token.LP; if (this.mode == 'BUILDING_SYMBOL_TREE') { fnScope = new Scope(1, currentScope, token.n, '', token); @@ -878,7 +896,7 @@ ScopeParser.prototype = { fnScope = this.indexedScopes[token.id]; } //if (this.mode == 'BUILDING_SYMBOL_TREE') - print('FUNC-PARSE:' + JSON.stringify(token,null,4)); + // print('FUNC-PARSE:' + JSON.stringify(token,null,4)); // Parse function arguments. var args = token.items; for (var argpos =0; argpos < args.length; argpos++) {