X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FScopeParser.js;h=447946232f05cfb67d8178c16400ca545f1fa221;hb=821f387fe87df1182af1b55f621418b1ad4adb01;hp=d49915e3f3f09cf418614a80aa4f99732d22ea4c;hpb=591cd2a33b7ff4924dcac896c098111afadd49c1;p=gnome.introspection-doc-generator diff --git a/JSDOC/ScopeParser.js b/JSDOC/ScopeParser.js index d49915e..4479462 100644 --- a/JSDOC/ScopeParser.js +++ b/JSDOC/ScopeParser.js @@ -223,7 +223,12 @@ ScopeParser.prototype = { var isObjectLitAr = [ false ]; var isInObjectLitAr; - this.scopes.push(scope); + thisScope = scope; + if (thisScope) { + this.scopes.push(scope); + } else { + thisScope = this.scopes[this.scopes.length-1] + } //var scopeIndent = ''; //this.scopes.forEach(function() { @@ -253,7 +258,7 @@ ScopeParser.prototype = { while (true) { token = this.ts.nextTok(); //!this.debug|| print( token.toString()); - print('SCOPE-VAR:' + token.toString()); + print('SCOPE-VAR-VAL:' + token.toString()); if (!token) { // can return false at EOF! break; } @@ -272,10 +277,10 @@ ScopeParser.prototype = { if (this.mode == "BUILDING_SYMBOL_TREE") { - identifier = scope.getIdentifier(token.data) ; + identifier = thisScope.getIdentifier(token.data) ; if (identifier == false) { - scope.declareIdentifier(token.data, token); + thisScope.declareIdentifier(token.data, token); } else { token.identifier = identifier; this.warn("(SCOPE) The variable " + token.data + ' (line:' + token.line + ") has already been declared in the same scope..."); @@ -313,7 +318,8 @@ ScopeParser.prototype = { break; case "KEYW.FUNCTION": - print('SCOPE-FUNC:' + JSON.stringify(token,null,4)); + if (this.mode == 'BUILDING_SYMBOL_TREE') + print('SCOPE-FUNC:' + JSON.stringify(token,null,4)); //println(""+token.data+""); var bn = this.braceNesting; this.parseFunctionDeclaration(); @@ -328,15 +334,21 @@ ScopeParser.prototype = { if (token.props) { for (var prop in token.props) { - if (token.props[prop].val.data == 'function') { + + + // print('SCOPE-PROPS:' + JSON.stringify(token.props[prop],null,4)); + if (token.props[prop].val[0].data == 'function') { // parse a function.. - this.parseFunctProp(token.props[prop]); + this.ts = new TokenStream(token.props[prop].val); + this.ts.nextTok(); + this.parseFunctionDeclaration(); + continue; } // key value.. this.ts = new TokenStream(token.props[prop].val); - this.parseScope(scope); + this.parseScope(false); } this.ts = curTS; @@ -350,7 +362,7 @@ ScopeParser.prototype = { var _this = this; token.items.forEach(function(expr) { _this.ts = new TokenStream(expr); - _this.parseExpression(scope) + _this.parseExpression() }); this.ts = curTS; //print("NOT PROPS"); Seed.quit(); @@ -393,7 +405,7 @@ ScopeParser.prototype = { // object member. As a consequence, the only thing we can // do is turn the obfuscation off for the highest scope // containing the 'with' block. - this.protectScopeFromObfuscation(scope); + this.protectScopeFromObfuscation(thisScope); this.warn("Using 'with' is not recommended." + (this.munge ? " Moreover, using 'with' reduces the level of compression!" : ""), true); } break; @@ -485,7 +497,7 @@ ScopeParser.prototype = { //println("GOT IDENT: " + symbol + "
"); //println("GOT IDENT (2): " + symbol + "
"); - identifier = this.getIdentifier(symbol, scope); + identifier = this.getIdentifier(symbol, thisScope); if (identifier == false) { // BUG!find out where builtin is defined... @@ -525,7 +537,7 @@ ScopeParser.prototype = { var _t = this; this.ts.look(-1).data.replace(/eval:var:([a-z_]+)/ig, function(m, a) { - var hi = _t.getIdentifier(a, scope); + var hi = _t.getIdentifier(a, thisScope); // println("PROTECT "+a+" from munge" + (hi ? "FOUND" : "MISSING")); if (hi) { // println("PROTECT "+a+" from munge"); @@ -538,7 +550,7 @@ ScopeParser.prototype = { } else { - this.protectScopeFromObfuscation(scope); + this.protectScopeFromObfuscation(thisScope); this.warn("Using 'eval' is not recommended. (use eval:var:noreplace in comments to optimize) " + (this.munge ? " Moreover, using 'eval' reduces the level of compression!" : ""), true); } @@ -611,19 +623,16 @@ ScopeParser.prototype = { //this.log("EXP:" + token.data); switch (token.type) { case 'PUNC': - print("EXPR-PUNC:" + JSON.stringify(token, null, 4)); + print("EXPR-PUNC:" + token.toString()); switch(token.data) { case ';': + print("<< EXIT EXPRESSION"); + break; + case ',': - if (this.braceNesting == expressionBraceNesting && - bracketNesting == 0 && - parensNesting == 0) { - print("<< EXIT EXPRESSION"); - this.expN--; - return; - } + break; @@ -658,7 +667,7 @@ ScopeParser.prototype = { var _this = this; token.items.forEach(function(expr) { _this.ts = new TokenStream(expr); - _this.parseExpression(scope) + _this.parseExpression() }); this.ts = curTS; @@ -688,61 +697,35 @@ 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(); - isObjectLitAr.push(true); - //print(">>>>> EXP PUSH(true)"); - } - - + if (this.mode == 'BUILDING_SYMBOL_TREE') + print("EXPR-STR:" + JSON.stringify(token, null, 4)); + - 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; case 'NAME': - print("EXPR-NAME:" + JSON.stringify(token, null, 4)); + if (this.mode == 'BUILDING_SYMBOL_TREE') { + + print("EXPR-NAME:" + JSON.stringify(token, null, 4)); + } else { + print("EXPR-NAME:" + token.toString()); + } symbol = token.data; //print("in NAME = " + token.toString()); //print("in NAME 0: " + this.ts.look(0).toString()); //print("in NAME 2: " + this.ts.lookTok(2).toString()); - 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)"); - break; - } - - isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1]; - //print ("isInObjectLitAr : " + isInObjectLitAr + ' ' + token.toString()); - if (isInObjectLitAr && this.ts.lookTok(0).data == "," && this.ts.lookTok(2).data == ":") { - break; - } - //print(this.ts.lookTok(0).data); - if (this.ts.lookTok(0).data == ".") { + //print(this.ts.lookTok(-1).data); + // prefixed with '.' + if (this.ts.lookTok(-1).data == ".") { //skip '.' break; } - if (this.mode == 'PASS2_SYMBOL_TREE') { + + if (this.mode == 'PASS2_SYMBOL_TREE') { identifier = this.getIdentifier(symbol, currentScope); //println("??"); @@ -755,8 +738,10 @@ ScopeParser.prototype = { // any conflict with other munged symbols. this.globalScope.declareIdentifier(symbol, token); this.warn("Found an undeclared symbol: " + symbol + ' (line:' + token.line + ')', true); + print("Found an undeclared symbol: " + symbol + ' (line:' + token.line + ')'); + throw "OOPS"; } else { - //println("undeclared") + print("undeclared:" + token.toString()) } @@ -774,7 +759,8 @@ ScopeParser.prototype = { //println("EID"); case 'KEYW': - print("EXPR-KEYW:" + JSON.stringify(token, null, 4)); + if (this.mode == 'BUILDING_SYMBOL_TREE') + print("EXPR-KEYW:" + JSON.stringify(token, null, 4)); if (token.name == "FUNCTION") { this.parseFunctionDeclaration(); @@ -810,8 +796,9 @@ ScopeParser.prototype = { } break; } - default: - print("EXPR-SKIP:" + JSON.stringify(token, null, 4)); + default: + if (this.mode == 'BUILDING_SYMBOL_TREE') + print("EXPR-SKIP:" + JSON.stringify(token, null, 4)); break; } @@ -885,21 +872,21 @@ ScopeParser.prototype = { //println("STORING SCOPE" + this.ts.cursor); - this.indexedScopes[this.ts.cursor] = fnScope; + this.indexedScopes[token.id] = fnScope; } else { //qln("FETCHING SCOPE" + this.ts.cursor); - fnScope = this.indexedScopes[this.ts.cursor]; + fnScope = this.indexedScopes[token.id]; } - - print('FUNC-PARSE:' + JSON.stringify(token,null,4)); + if (this.mode == 'BUILDING_SYMBOL_TREE') + print('FUNC-PARSE:' + JSON.stringify(token,null,4)); // Parse function arguments. var args = token.items; for (var argpos =0; argpos < args.length; argpos++) { token = args[argpos][0]; - // print ("FUNC ARGS: " + token.toString()) + print ("FUNC ARGS: " + token.toString()) //assert token.getType() == Token.NAME || // token.getType() == Token.COMMA; if (token.type == 'NAME' && this.mode == 'BUILDING_SYMBOL_TREE') { @@ -909,7 +896,7 @@ ScopeParser.prototype = { // Exception for Prototype 1.6... identifier.preventMunging(); } - argpos++; + //argpos++; } }