JSDOC/Scope.js
[gnome.introspection-doc-generator] / JSDOC / ScopeParser.js
1 //<Script type="text/javascript">
2
3 Scope = imports['JSDOC/Scope.js'].Scope;
4
5 /**
6 * Scope stuff
7
8 * // FIXME - I need this to do next() without doccomments..
9 */
10
11 ScopeParser = function(ts) {
12     this.ts = ts;
13     this.warnings = [];
14     this.scopes = [];
15     this.indexedScopes = {};
16     this.timer = new Date() * 1;
17    
18 }
19
20 // list of keywords that should not be used in object literals.
21 ScopeParser.idents = [
22         "break",         
23         "case",          
24         "continue",     
25         "default",      
26         "delete",       
27         "do",            
28         "else",         
29         "export",       
30         "false",        
31         "for",          
32         "function",     
33         "if",           
34         "import",       
35         "in",           
36         "new",          
37         "null",         
38         "return",       
39         "switch",       
40         "this",         
41         "true",         
42         "typeof",       
43         "var",          
44         "void",         
45         "while",        
46         "with",         
47
48         "catch",        
49         "class",        
50         "const",        
51         "debugger",     
52         "enum",         
53         "extends",      
54         "finally",      
55         "super",        
56         "throw",         
57         "try",          
58
59         "abstract",     
60         "boolean",      
61         "byte",         
62         "char",         
63         "double",       
64         "final",        
65         "float",        
66         "goto",         
67         "implements", 
68         "instanceof",
69         "int",           
70         "interface",     
71         "long",          
72         "native",       
73         "package",      
74         "private",      
75         "protected",     
76         "public",        
77         "short",        
78         "static",       
79         "synchronized",  
80         "throws",        
81         "transient",     
82                 "include",       
83                 "undefined"
84 ];
85
86
87 ScopeParser.prototype = {
88     timer: 0,
89     timerPrint: function (str) {
90         var ntime = new Date() * 1;
91         var tdif =  ntime -this.timer;
92         this.timer = ntime;
93         var pref = '';
94         if (tdif > 100) { //slower ones..
95             pref = '***';
96         }
97         println(pref+'['+tdif+']'+str);
98         
99     },
100     warn: function(s) {
101         this.warnings.push(s);
102         //println("WARNING:" + htmlescape(s) + "<BR>");
103     },
104     // defaults should not be initialized here =- otherwise they get duped on new, rather than initalized..
105     warnings : false,
106     ts : false,
107     scopes : false,
108     global : false,
109     mode : "", //"BUILDING_SYMBOL_TREE",
110     braceNesting : 0,
111     indexedScopes : false,
112     munge: true,
113
114
115
116
117
118     buildSymbolTree : function()
119     {
120         //println("<PRE>");
121         
122         this.ts.rewind();
123         this.braceNesting = 0;
124         this.scopes = [];
125         
126         
127         
128         
129         this.globalScope = new  Scope(-1, false, -1, '');
130         indexedScopes = { 0 : this.globalScope };
131         
132         this.mode = 'BUILDING_SYMBOL_TREE';
133         this.parseScope(this.globalScope);
134     },
135     mungeSymboltree : function()
136     {
137
138         if (!this.munge) {
139             return;
140         }
141
142         // One problem with obfuscation resides in the use of undeclared
143         // and un-namespaced global symbols that are 3 characters or less
144         // in length. Here is an example:
145         //
146         //     var declaredGlobalVar;
147         //
148         //     function declaredGlobalFn() {
149         //         var localvar;
150         //         localvar = abc; // abc is an undeclared global symbol
151         //     }
152         //
153         // In the example above, there is a slim chance that localvar may be
154         // munged to 'abc', conflicting with the undeclared global symbol
155         // abc, creating a potential bug. The following code detects such
156         // global symbols. This must be done AFTER the entire file has been
157         // parsed, and BEFORE munging the symbol tree. Note that declaring
158         // extra symbols in the global scope won't hurt.
159         //
160         // Note: Since we go through all the tokens to do this, we also use
161         // the opportunity to count how many times each identifier is used.
162
163         this.ts.rewind();
164         this.braceNesting = 0;
165         this.scopes= [];
166         this.mode = 'CHECKING_SYMBOL_TREE';
167         
168         //println("MUNGING?");
169         
170         this.parseScope(this.globalScope);
171         this.globalScope.munge();
172     },
173
174
175     log : function(str)
176     {
177           //println("<B>LOG:</B>" + htmlescape(str) + "<BR/>\n");
178     },
179     logR : function(str)
180     {
181             //println("<B>LOG:</B>" + str + "<BR/>");
182     },
183
184
185
186
187
188
189     parseScope : function(scope) // parse a token stream..
190     {
191         //this.timerPrint("parseScope EnterScope"); 
192         var symbol;
193         var token;
194         
195         var identifier;
196
197         var expressionBraceNesting = this.braceNesting;
198         var bracketNesting = 0;
199         var parensNesting = 0;
200         
201         var isObjectLitAr = [ false ];
202         
203         this.scopes.push(scope);
204         token = this.ts.lookT();
205         while (token) {
206           //  this.timerPrint("parseScope AFTER lookT: " + token.toString()); 
207              
208             //println("START<i>"+token.data+"</i>");
209             switch(token.tokN) {
210                 case Script.TOKvar:
211                 case Script.TOKconst:
212                     
213                     //this.log("parseScope GOT VAR/CONST : " + token.toString()); 
214                     while (true) {
215                         token = this.ts.nextT();
216                         
217                         if (token.tokN == Script.TOKvar) { // kludge..
218                             continue;
219                         }
220                         if (!token) { // can return false at EOF!
221                             break;
222                         }
223                         //this.logR("parseScope GOT VAR  : <B>" + token.toString() + "</B>"); 
224                         if (!token.isType('identifier')) {
225                             println(token.toString());
226                             throw "var without ident";
227                         }
228                         
229
230                         if (this.mode == "BUILDING_SYMBOL_TREE") {
231                             identifier = scope.getIdentifier(token.data) ;
232                             
233                             if (identifier == false) {
234                                 scope.declareIdentifier(token.data,token);
235                             } else {
236                                 token.identifier = identifier;
237                                 this.warn("The variable " + symbol + " has already been declared in the same scope...");
238                             }
239                         }
240
241                         token = this.ts.nextT();
242                         /*
243                         assert token.getType() == Token.SEMI ||
244                                 token.getType() == Token.ASSIGN ||
245                                 token.getType() == Token.COMMA ||
246                                 token.getType() == Token.IN;
247                         */
248                         if (token.isType('in')) {
249                             break;
250                         } else {
251                             this.parseExpression();
252                             //this.logR("parseScope DONE  : <B>ParseExpression</B> - tok is:" + this.ts.lookT(0).toString()); 
253                             
254                             
255                             if (this.ts.lookT(0).isType('semicolon')) {
256                                 break;
257                             }
258                         }
259                     }
260                     break;
261                 case Script.TOKfunction:
262                     //println("<i>"+token.data+"</i>");
263                     this.parseFunctionDeclaration();
264                     break;
265
266                 case Script.TOKlbrace: // {
267                     //println("<i>"+token.data+"</i>");
268                     isObjectLitAr.push(false);
269                     this.braceNesting++;
270                     break;
271
272                 case Script.TOKrbrace: // }
273                     //println("<i>"+token.data+"</i>");
274                     this.braceNesting--;
275                     isObjectLitAr.pop();
276                         //assert braceNesting >= scope.getBraceNesting();
277                     if (this.braceNesting == scope.braceN) {
278                         var ls = this.scopes.pop();
279                         ls.getUsedSymbols();
280                         return;
281                     }
282                     break;
283
284                 case Script.TOKwith:
285                     //println("<i>"+token.data+"</i>");   
286                     if (this.mode == "BUILDING_SYMBOL_TREE") {
287                         // Inside a 'with' block, it is impossible to figure out
288                         // statically whether a symbol is a local variable or an
289                         // object member. As a consequence, the only thing we can
290                         // do is turn the obfuscation off for the highest scope
291                         // containing the 'with' block.
292                         this.protectScopeFromObfuscation(scope);
293                         this.warn("Using 'with' is not recommended." + (this.munge ? " Moreover, using 'with' reduces the level of compression!" : ""), true);
294                     }
295                     break;
296
297                 case Script.TOKcatch:
298                     //println("<i>"+token.data+"</i>");
299                     this.parseCatch();
300                     break;
301                 /*
302                 case Token.SPECIALCOMMENT:
303                         if (mode == BUILDING_SYMBOL_TREE) {
304                             protectScopeFromObfuscation(scope);
305                             this.warn("Using JScript conditional comments is not recommended." + (munge ? " Moreover, using JScript conditional comments reduces the level of compression." : ""), true);
306                         }
307                         break;
308                 */
309                 
310                 case Script.TOKstring: // used for object lit detection..
311                     //println("<i>"+token.data+"</i>");
312                     if (this.ts.lookT(-1).isType('lbrace') && this.ts.lookT(1).isType('colon')) {
313                         // then we are in an object lit.. -> we need to flag the brace as such...
314                         isObjectLitAr.pop();
315                         isObjectLitAr.push(true);
316                     }
317                     var isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1];
318                     if (isInObjectLitAr &&  this.ts.lookT(1).isType('colon') &&
319                         ( this.ts.lookT(-11).isType('lbrace') ||  this.ts.lookT(-1).isType('comma'))) {
320                         // see if we can replace..
321                         // remove the quotes..
322                         // should do a bit more checking!!!! (what about wierd char's in the string..
323                         var str = token.data.substring(1,token.data.length-1);
324                         if (/^[a-z_]+$/i.test(str) && ScopeParser.idents.indexOf(str) < 0) {
325                             token.outData = str;
326                         }
327                         
328                          
329                         
330                     }
331                     
332                     
333                     
334                     break;
335                 
336                 
337                 
338                 case Script.TOKidentifier:
339                     
340                     // look for  { ** : <- indicates obj literal.. ** this could occur with numbers ..
341                     if ((this.ts.lookT(-1).tokN ==Script.TOKlbrace) && (this.ts.lookT(1).tokN == Script.TOKcolon)) {
342                         isObjectLitAr.pop();
343                         isObjectLitAr.push(true);
344                         //println("<i>"+token.data+"</i>");
345                         break;
346                     }
347                     var isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1];
348                     
349                     if (isInObjectLitAr && (this.ts.lookT(1).tokN == Script.TOKcolon) && (this.ts.lookT(-1).tokN == Script.TOKcomma)) {
350                         // skip, it's an object lit key..
351                         //println("<i>"+token.data+"</i>");
352                         break;
353                     }
354                     
355                     
356                     // skip anyting with "." before it..!!
357                     
358                     if (this.ts.lookT(-1).isType('dot')) {
359                         // skip, it's an object prop.
360                         //println("<i>"+token.data+"</i>");
361                         break;
362                     }
363                     
364                     //println("<B>SID</B>");
365                    
366                 
367                 
368                     symbol = token.data;
369                     
370                      if (this.mode == 'BUILDING_SYMBOL_TREE') {
371
372                         if (symbol == "eval") {
373                             // look back one and see if we can find a comment!!!
374                             if (this.ts.look(-1).isDoc()) {
375                                 // look for eval:var:noreplace\n
376                                 var _t = this;
377                                 this.ts.look(-1).data.replace(/eval:var:([a-z_]+)/ig, function(m, a) {
378                                     
379                                     var hi = _t.getIdentifier(a, scope);
380                                    // println("PROTECT "+a+" from munge" + (hi ? "FOUND" : "MISSING"));
381                                     if (hi) {
382                                      //   println("PROTECT "+a+" from munge");
383                                         hi.toMunge = false;
384                                     }
385                                     
386                                 });
387                                 
388                                 
389                             } else {
390                                 
391                             
392                                 this.protectScopeFromObfuscation(scope);
393                                 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);
394                             }
395
396                         }
397
398                     } else   if (this.mode == 'CHECKING_SYMBOL_TREE') {
399                         
400                         //println("GOT IDENT: -2 : " + this.ts.lookT(-2).toString() + " <BR> ..... -1 :  " +  this.ts.lookT(-1).toString() + " <BR> "); 
401                         
402                         
403                         
404                         //println("GOT IDENT: <B>" + symbol + "</B><BR/>");
405                              
406                             //println("GOT IDENT (2): <B>" + symbol + "</B><BR/>");
407                         identifier = this.getIdentifier(symbol, scope);
408                         
409                         if (identifier == false) {
410 // BUG!find out where builtin is defined...
411                             if (symbol.length <= 3 && JSDOC.Scope.builtin.indexOf(symbol) < 0) {
412                                 // Here, we found an undeclared and un-namespaced symbol that is
413                                 // 3 characters or less in length. Declare it in the global scope.
414                                 // We don't need to declare longer symbols since they won't cause
415                                 // any conflict with other munged symbols.
416                                 this.globalScope.declareIdentifier(symbol, token);
417                                 this.warn("Found an undeclared symbol: " + symbol, true);
418                             }
419                             
420                             //println("GOT IDENT IGNORE(3): <B>" + symbol + "</B><BR/>");
421                         } else {
422                             token.identifier = identifier;
423                             identifier.refcount++;
424                         }
425                        
426                     }
427                     break;
428                 //case Script.TOKsemicolon':
429                     //println("<br/>");
430                 //    break;
431                 default:
432                     //println("<i>"+token.data+"</i>");
433                     break;
434                 
435             } // end switch
436             
437             
438             //this.timerPrint("parseScope TOK : " + token.toString()); 
439             token = this.ts.nextT();
440             //if (this.ts.nextT()) break;
441             
442         }
443     },
444
445
446     parseExpression : function() {
447
448         // Parse the expression until we encounter a comma or a semi-colon
449         // in the same brace nesting, bracket nesting and paren nesting.
450         // Parse functions if any...
451         //println("<i>EXP</i><BR/>");
452         var symbol;
453         var token;
454         var currentScope;
455         var identifier;
456
457         var expressionBraceNesting = this.braceNesting;
458         var bracketNesting = 0;
459         var parensNesting = 0;
460
461         var isObjectLitAr = [ false ];
462         while (token = this.ts.lookT()) {
463      
464
465             
466             currentScope = this.scopes[this.scopes.length-1];
467             
468             //println("<i>"+token.data+"</i>");
469             
470             switch (token.type) {
471
472                 case 'semicolon':
473                 case 'comma':
474                     if (this.braceNesting == expressionBraceNesting &&
475                             bracketNesting == 0 &&
476                             parensNesting == 0) {
477                         return;
478                     }
479                     break;
480
481                 case 'function':
482                     this.parseFunctionDeclaration();
483                     break;
484
485                 case 'lbrace': //Token.LC:
486                     isObjectLitAr.push(false);
487                     
488                     this.braceNesting++;
489                     break;
490
491                 case 'rbrace': //Token.RC:
492                     this.braceNesting--;
493                     isObjectLitAr.pop();
494                     
495                    // assert braceNesting >= expressionBraceNesting;
496                     break;
497
498                 case 'lbracket': //Token.LB:
499                     bracketNesting++;
500                     break;
501
502                 case 'rbracket': //Token.RB:
503                     bracketNesting--;
504                     break;
505
506                 case 'lparen': //Token.LP:
507                     parensNesting++;
508                     break;
509
510                 case 'rparen': //Token.RP:
511                     parensNesting--;
512                     break;
513                     
514                     
515                    
516                 case 'string': // used for object lit detection..
517                     if (this.ts.lookT(-1).isType('lbrace') && this.ts.lookT(1).isType('colon')) {
518                         // then we are in an object lit.. -> we need to flag the brace as such...
519                         isObjectLitAr.pop();
520                         isObjectLitAr.push(true);
521                     }
522                     
523                     
524                      
525                     var isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1];
526                     if (isInObjectLitAr &&  this.ts.lookT(1).isType('colon') &&
527                         ( this.ts.lookT(-11).isType('lbrace') ||  this.ts.lookT(-1).isType('comma'))) {
528                         // see if we can replace..
529                         // remove the quotes..
530                         var str = token.data.substring(1,token.data.length-1);
531                         if (/^[a-z_]+$/i.test(str) && ScopeParser.idents.indexOf(str) < 0) {
532                             token.outData = str;
533                         }
534                         
535                          
536                         
537                     }
538                     
539                     break;
540                 
541                   
542                     
543                 /*
544                 case Token.SPECIALCOMMENT:
545                     if (mode == BUILDING_SYMBOL_TREE) {
546                         protectScopeFromObfuscation(currentScope);
547                         this.warn("Using JScript conditional comments is not recommended." + (munge ? " Moreover, using JScript conditional comments reduces the level of compression!" : ""), true);
548                     }
549                     break;
550                 */
551                 case 'identifier':
552                     symbol = token.data;
553                     if (this.ts.lookT(-1).isType('lbrace') && this.ts.lookT(1).isType('colon')) {
554                         // then we are in an object lit.. -> we need to flag the brace as such...
555                         isObjectLitAr.pop();
556                         isObjectLitAr.push(true);
557                         break;
558                     }
559                     var isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1];
560                     if (isInObjectLitAr && this.ts.lookT(-1).isType('comma') && this.ts.lookT(1).isType('colon')) {
561                         break;
562                     }
563                     
564                     if (this.ts.lookT(-1).isType('dot')) {
565                         //skip '.'
566                         break;
567                     }
568                     
569                     
570                     
571                     //println("<B>EID</B>");
572                     
573                     
574                     if (this.mode == 'BUILDING_SYMBOL_TREE') {
575
576                         if (symbol == "eval") {
577                             if (this.ts.look(-1).isDoc()) {
578                                 // look for eval:var:noreplace\n
579                                 var _t = this;
580                                 this.ts.look(-1).data.replace(/eval:var:([a-z]+)/ig, function(m, a) {
581                                     var hi = _t.getIdentifier(a, currentScope);
582                                    //println("PROTECT "+a+" from munge" + (hi ? "FOUND" : "MISSING"));
583                                     if (hi) {
584                                       //  println("PROTECT "+a+" from munge");
585                                         hi.toMunge = false;
586                                     }
587                                     
588                                     
589                                 });
590                                 
591                             } else {
592                                 this.protectScopeFromObfuscation(currentScope);
593                                 this.warn("Using 'eval' is not recommended." + (this.munge ? " Moreover, using 'eval' reduces the level of compression!" : ""), true);
594                             }
595                             
596
597                         }
598                         break;
599                     } 
600                     if (this.mode == 'CHECKING_SYMBOL_TREE') {
601
602                         identifier = this.getIdentifier(symbol, currentScope);
603                         //println("<B>??</B>");
604                         if (identifier == false) {
605
606                             if (symbol.length <= 3 && JSDOC.Scope.builtin.indexOf(symbol) < 0) {
607                                 // Here, we found an undeclared and un-namespaced symbol that is
608                                 // 3 characters or less in length. Declare it in the global scope.
609                                 // We don't need to declare longer symbols since they won't cause
610                                 // any conflict with other munged symbols.
611                                 this.globalScope.declareIdentifier(symbol, token);
612                                 this.warn("Found an undeclared symbol: " + symbol, true);
613                             } else {
614                                 //println("undeclared")
615                             }
616                             
617                             
618                         } else {
619                             //println("<B>++</B>");
620                             token.identifier = identifier;
621                             identifier.refcount++;
622                         }
623                         
624                     }
625                     break;
626             }
627             if (!this.ts.nextT()) break;
628         }
629     },
630
631
632     parseCatch : function() {
633
634         var symbol;
635         var token;
636         var currentScope;
637         var identifier;
638
639         //token = getToken(-1);
640         //assert token.getType() == Token.CATCH;
641         token = this.ts.nextT();
642         //assert token.getType() == Token.LP; (
643         token = this.ts.nextT();
644         //assert token.getType() == Token.NAME;
645         
646         symbol = token.data;
647         currentScope = this.scopes[this.scopes.length-1];
648
649         if (this.mode == 'BUILDING_SYMBOL_TREE') {
650             // We must declare the exception identifier in the containing function
651             // scope to avoid errors related to the obfuscation process. No need to
652             // display a warning if the symbol was already declared here...
653             currentScope.declareIdentifier(symbol, token);
654         } else {
655             //?? why inc the refcount?? - that should be set when building the tree???
656             identifier = this.getIdentifier(symbol, currentScope);
657             identifier.refcount++;
658         }
659
660         token = this.ts.nextT();
661         //assert token.getType() == Token.RP; // )
662     },
663     
664     parseFunctionDeclaration : function() 
665     {
666
667         var symbol;
668         var  token;
669         var currentScope  = false; 
670         var fnScope = false;
671         var identifier;
672         //this.logR("<B>PARSING FUNCTION</B>");
673         currentScope = this.scopes[this.scopes.length-1];
674
675         token = this.ts.nextT();
676         if (token.isType('identifier')) {
677             if (this.mode == 'BUILDING_SYMBOL_TREE') {
678                 // Get the name of the function and declare it in the current scope.
679                 symbol = token.data;
680                 if (currentScope.getIdentifier(symbol) != false) {
681                     this.warn("The function " + symbol + " has already been declared in the same scope...", true);
682                 }
683                 currentScope.declareIdentifier(symbol,token);
684             }
685             token =  this.ts.nextT();
686         }
687
688         //assert token.getType() == Token.LP;
689         if (this.mode == 'BUILDING_SYMBOL_TREE') {
690             fnScope = new Scope(this.braceNesting, currentScope, token.n, '');
691             
692             //println("STORING SCOPE" + this.ts.cursor);
693             
694             this.indexedScopes[this.ts.cursor] = fnScope;
695             
696         } else {
697             //println("FETCHING SCOPE" + this.ts.cursor);
698             fnScope = this.indexedScopes[this.ts.cursor];
699         }
700         
701         // Parse function arguments.
702         var argpos = 0;
703         while (!this.ts.lookT().isType('rparen')) { //(token = consumeToken()).getType() != Token.RP) {
704             token = this.ts.nextT();
705            
706             //assert token.getType() == Token.NAME ||
707             //        token.getType() == Token.COMMA;
708             if (token.isType('identifier') && this.mode == 'BUILDING_SYMBOL_TREE') {
709                 symbol = token.data;
710                 identifier = fnScope.declareIdentifier(symbol,token);
711                 if (symbol == "$super" && argpos == 0) {
712                     // Exception for Prototype 1.6...
713                     identifier.preventMunging();
714                 }
715                 argpos++;
716             }
717         }
718
719         token = this.ts.nextT();
720         // assert token.getType() == Token.LC;
721         this.braceNesting++;
722
723         token = this.ts.nextT();
724         if (token.isType('string') && this.ts.lookT(1).isType('semicolon')) {
725             /*
726             
727             NOT SUPPORTED YET!?!!?!
728             
729             // This is a hint. Hints are empty statements that look like
730             // "localvar1:nomunge, localvar2:nomunge"; They allow developers
731             // to prevent specific symbols from getting obfuscated (some heretic
732             // implementations, such as Prototype 1.6, require specific variable
733             // names, such as $super for example, in order to work appropriately.
734             // Note: right now, only "nomunge" is supported in the right hand side
735             // of a hint. However, in the future, the right hand side may contain
736             // other values.
737             consumeToken();
738             String hints = token.getValue();
739             // Remove the leading and trailing quotes...
740             hints = hints.substring(1, hints.length() - 1).trim();
741             StringTokenizer st1 = new StringTokenizer(hints, ",");
742             while (st1.hasMoreTokens()) {
743                 String hint = st1.nextToken();
744                 int idx = hint.indexOf(':');
745                 if (idx <= 0 || idx >= hint.length() - 1) {
746                     if (mode == BUILDING_SYMBOL_TREE) {
747                         // No need to report the error twice, hence the test...
748                         this.warn("Invalid hint syntax: " + hint, true);
749                     }
750                     break;
751                 }
752                 String variableName = hint.substring(0, idx).trim();
753                 String variableType = hint.substring(idx + 1).trim();
754                 if (mode == BUILDING_SYMBOL_TREE) {
755                     fnScope.addHint(variableName, variableType);
756                 } else if (mode == CHECKING_SYMBOL_TREE) {
757                     identifier = fnScope.getIdentifier(variableName);
758                     if (identifier != null) {
759                         if (variableType.equals("nomunge")) {
760                             identifier.preventMunging();
761                         } else {
762                             this.warn("Unsupported hint value: " + hint, true);
763                         }
764                     } else {
765                         this.warn("Hint refers to an unknown identifier: " + hint, true);
766                     }
767                 }
768             }
769             */
770         }
771
772         this.parseScope(fnScope);
773         // now pop it off the stack!!!
774        
775         
776         
777     },
778     
779     protectScopeFromObfuscation : function(scope) {
780             //assert scope != null;
781         
782         if (scope == this.globalScope) {
783             // The global scope does not get obfuscated,
784             // so we don't need to worry about it...
785             return;
786         }
787
788         // Find the highest local scope containing the specified scope.
789         while (scope && scope.parent != this.globalScope) {
790             scope = scope.parent;
791         }
792
793         //assert scope.getParentScope() == globalScope;
794         scope.preventMunging();
795     },
796     
797     getIdentifier: function(symbol, scope) {
798         var identifier;
799         while (scope != false) {
800             identifier = scope.getIdentifier(symbol);
801             //println("ScopeParser.getIdentgetUsedSymbols("+symbol+")=" + scope.getUsedSymbols().join(','));
802             if (identifier) {
803                 return identifier;
804             }
805             scope = scope.parent;
806         }
807         return false;
808     }
809 });