X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FScopeParser.js;h=1b315b0b6c5c87a40c9109f8ddf8d4d0579a33c4;hb=d56985f1898989ac6236528f762e69837f185914;hp=6a84a108a36242078bf6cfe223b9ed0b9e42123e;hpb=136ee539262eecd85dbef00e7726c88c94fbd0d9;p=gnome.introspection-doc-generator diff --git a/JSDOC/ScopeParser.js b/JSDOC/ScopeParser.js index 6a84a10..1b315b0 100644 --- a/JSDOC/ScopeParser.js +++ b/JSDOC/ScopeParser.js @@ -98,7 +98,7 @@ ScopeParser.prototype = { }, warn: function(s) { - print('****************' + s); + //print('****************' + s); this.warnings.push(s); //println("WARNING:" + htmlescape(s) + "
"); }, @@ -133,7 +133,7 @@ ScopeParser.prototype = { this.mode = 'BUILDING_SYMBOL_TREE'; this.parseScope(this.globalScope); - print("---------------END PASS 1 ---------------- "); + //print("---------------END PASS 1 ---------------- "); }, mungeSymboltree : function() @@ -178,7 +178,9 @@ ScopeParser.prototype = { log : function(str) { - //println("LOG:" + htmlescape(str) + "
\n"); + print (" ".substring(0, this.braceNesting*2) + str); + + //println("LOG:" + htmlescape(str) + "
\n"); }, logR : function(str) { @@ -193,7 +195,7 @@ ScopeParser.prototype = { parseScope : function(scope) // parse a token stream.. { //this.timerPrint("parseScope EnterScope"); - print(">>> ENTER SCOPE" + this.scopes.length); + //this.log(">>> ENTER SCOPE" + this.scopes.length); var symbol; var token; @@ -210,9 +212,9 @@ ScopeParser.prototype = { while (token) { // this.timerPrint("parseScope AFTER lookT: " + token.toString()); - !this.debug|| print(token.type + '.' + token.name+ ":" + token.data); + //this.log(token.data); if (token.type == 'NAME') { - print('*' + token.data); + // print('*' + token.data); } switch(token.type + '.' + token.name) { case "KEYW.VAR": @@ -226,12 +228,15 @@ ScopeParser.prototype = { if (!token) { // can return false at EOF! break; } - if (token.name == "VAR") { // kludge.. + if (token.name == "VAR" || token.data == ',') { // kludge.. continue; } //this.logR("parseScope GOT VAR : " + token.toString() + ""); if (token.type !="NAME") { - print(token.toString()); + for(var i = Math.max(this.ts.cursor-10,0); i < this.ts.cursor+1; i++) { + print(this.ts.tokens[i].toString()); + } + print( "var without ident"); Seed.quit() } @@ -259,9 +264,9 @@ ScopeParser.prototype = { if (token.name == "IN") { break; } else { - var bn = this.braceNesting; + //var bn = this.braceNesting; this.parseExpression(); - this.braceNesting = bn; + //this.braceNesting = bn; //this.logR("parseScope DONE : ParseExpression - tok is:" + this.ts.lookT(0).toString()); token = this.ts.lookTok(1); @@ -284,20 +289,25 @@ ScopeParser.prototype = { isObjectLitAr.push(false); this.braceNesting++; - print(">>>>>> OBJLIT PUSH(false)" + this.braceNesting); + //print(">>>>>> OBJLIT PUSH(false)" + this.braceNesting); break; case "PUNC.RIGHT_CURLY": // } //println(""+token.data+""); this.braceNesting--; isObjectLitAr.pop(); - print(">>>>>> OBJLIT POP"+ this.braceNesting); + //print(">>>>>> OBJLIT POP"+ this.braceNesting); //assert braceNesting >= scope.getBra ceNesting(); - if (this.braceNesting < 0) { + if (this.braceNesting < expressionBraceNesting) { var ls = this.scopes.pop(); ls.getUsedSymbols(); - print("<<<<<< we need to flag the brace as such... isObjectLitAr.pop(); isObjectLitAr.push(true); - print(">>>>>> OBJLIT REPUSH(true)"); + //print(">>>>>> OBJLIT REPUSH(true)"); } isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1]; @@ -366,7 +376,7 @@ ScopeParser.prototype = { if ((this.ts.lookTok(-1).data == "{") && (this.ts.lookTok(1).data == ":")) { isObjectLitAr.pop(); isObjectLitAr.push(true); - print(">>>>>> OBJLIT REPUSH(true)"); + //print(">>>>>> OBJLIT REPUSH(true)"); //println(""+token.data+""); break; } @@ -467,7 +477,7 @@ ScopeParser.prototype = { //if (this.ts.nextT()) break; } - print("<<<<<<"+token.data+""); - !this.debug|| print ("EXP" + token.toString()); + //this.log("EXP:" + token.data); switch (token.type) { case 'PUNC': switch(token.data) { @@ -516,13 +526,13 @@ ScopeParser.prototype = { isObjectLitAr.push(false); this.braceNesting++; - print(">>>>> EXP PUSH(false)"+this.braceNesting); + ///print(">>>>> EXP PUSH(false)"+this.braceNesting); break; case '}': //Token.RC: this.braceNesting--; isObjectLitAr.pop(); - print(">>>>> EXP POP" + this.braceNesting); + //print(">>>>> EXP POP" + this.braceNesting); // assert braceNesting >= expressionBraceNesting; break; @@ -549,7 +559,7 @@ ScopeParser.prototype = { // then we are in an object lit.. -> we need to flag the brace as such... isObjectLitAr.pop(); isObjectLitAr.push(true); - print(">>>>> EXP PUSH(true)"); + //print(">>>>> EXP PUSH(true)"); } @@ -575,19 +585,20 @@ ScopeParser.prototype = { case 'NAME': symbol = token.data; - if (this.ts.lookTok(-1).data == "{" && this.ts.lookTok(1).data == ":") { + + if (this.ts.look(0).data == "{" && this.ts.lookTok(2).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)"); + //print(">>>>> EXP PUSH(true)"); break; } isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1]; - if (isInObjectLitAr && this.ts.lookTok(-1).data == "," && this.ts.lookTok(1).data == ":") { + if (isInObjectLitAr && this.ts.lookTok(0).data == "," && this.ts.lookTok(2).data == ":") { break; } - - if (this.ts.lookTok(-1).data == ".") { + //print(this.ts.lookTok(0).data); + if (this.ts.lookTok(0).data == ".") { //skip '.' break; } @@ -732,7 +743,7 @@ ScopeParser.prototype = { this.indexedScopes[this.ts.cursor] = fnScope; } else { - //println("FETCHING SCOPE" + this.ts.cursor); + //qln("FETCHING SCOPE" + this.ts.cursor); fnScope = this.indexedScopes[this.ts.cursor]; }