X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FScopeParser.js;h=267152b2972c8e1c19bf70188e429a6af1ecb239;hb=0352fabe4a0a803e9f51632b5f06cdd016f489be;hp=a09f746ae26d8385cfcfa5095a3f20997e9bce26;hpb=4b9a0c86059520f3e2a03607cbafe62e8bb1051c;p=gnome.introspection-doc-generator diff --git a/JSDOC/ScopeParser.js b/JSDOC/ScopeParser.js index a09f746..267152b 100644 --- a/JSDOC/ScopeParser.js +++ b/JSDOC/ScopeParser.js @@ -261,7 +261,7 @@ ScopeParser.prototype = { continue; } //this.logR("parseScope GOT VAR : " + token.toString() + ""); - if (token.type !="NAME") { + if (token.type != "NAME") { for(var i = Math.max(this.ts.cursor-10,0); i < this.ts.cursor+1; i++) { print(this.ts.tokens[i].toString()); } @@ -575,10 +575,7 @@ ScopeParser.prototype = { currentScope = this.scopes[this.scopes.length-1]; - var scopeIndent = ''; - this.scopes.forEach(function() { - scopeIndent += ' '; - }); + //print(scopeIndent + ">> ENTER EXPRESSION" + this.expN); while (token = this.ts.lookTok()) { @@ -602,6 +599,8 @@ ScopeParser.prototype = { //this.log("EXP:" + token.data); switch (token.type) { case 'PUNC': + print("EXPR-PUNC:" + JSON.stringify(token, null, 4)); + switch(token.data) { case ';': @@ -609,7 +608,7 @@ ScopeParser.prototype = { if (this.braceNesting == expressionBraceNesting && bracketNesting == 0 && parensNesting == 0) { - print(scopeIndent + "<< EXIT EXPRESSION"); + print("<< EXIT EXPRESSION"); this.expN--; return; } @@ -632,13 +631,21 @@ ScopeParser.prototype = { break; case '[': //Token.LB: - bracketNesting++; + + var ts = this.ts; + var _this = this; + token.items.forEach(function(ns) { + _this.ts = new TokenStream(ns); + _this.parseExpression(); + }); + this.ts = ts; + break; - +/* case ']': //Token.RB: bracketNesting--; break; - +*/ case '(': //Token.LP: parensNesting++; break; @@ -650,6 +657,7 @@ ScopeParser.prototype = { break; case 'STRN': // used for object lit detection.. + 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(); @@ -678,7 +686,7 @@ ScopeParser.prototype = { case 'NAME': - + print("EXPR-NAME:" + JSON.stringify(token, null, 4)); symbol = token.data; //print("in NAME = " + token.toString()); //print("in NAME 0: " + this.ts.look(0).toString()); @@ -735,7 +743,7 @@ ScopeParser.prototype = { //println("EID"); case 'KEYW': - + print("EXPR-KEYW:" + JSON.stringify(token, null, 4)); if (token.name == "FUNCTION") { this.parseFunctionDeclaration(); @@ -775,7 +783,7 @@ ScopeParser.prototype = { } if (!this.ts.nextTok()) break; } - print(scopeIndent + "<< EXIT EXPRESSION"); + print("<< EXIT EXPRESSION"); this.expN--; },