JSDOC/ScopeParser.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; // {TokenStream}
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.lookTok(1);
205         while (token) {
206           //  this.timerPrint("parseScope AFTER lookT: " + token.toString()); 
207              
208             print(token.type + '.' + token.name+ ":" + token.data);
209             switch(token.type + '.' + token.name) {
210                 case "KEYW.VAR":
211                 case "KEYW.CONST": // not really relivant as it's only mozzy that does this.
212                     
213                     //this.log("parseScope GOT VAR/CONST : " + token.toString()); 
214                     while (true) {
215                         token = this.ts.nextTok();
216                         
217                         if (token.name == "var") { // 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.type =="NAME") {
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.nextTok();
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.name == "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.lookTok(0).data == ';') {
256                                 break;
257                             }
258                         }
259                     }
260                     break;
261                 case "KEYW.FUNCTION":
262                     //println("<i>"+token.data+"</i>");
263                     this.parseFunctionDeclaration();
264                     break;
265
266                 case "KEYW.LEFT_CURLY": // {
267                     //println("<i>"+token.data+"</i>");
268                     isObjectLitAr.push(false);
269                     this.braceNesting++;
270                     break;
271
272                 case "KEYW.RIGHT_CURLY": // }
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 "KEYW.WITH":
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 "KEYW.CATCH":
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 "STRN.DOUBLE_QUOTE": // used for object lit detection..
311                 case "STRN.SINGLE_QUOTE":
312                     //println("<i>"+token.data+"</i>");
313                     if (this.ts.lookTok(-1).data == '{' && this.ts.lookTok(1).data == ':') {
314                         // then we are in an object lit.. -> we need to flag the brace as such...
315                         isObjectLitAr.pop();
316                         isObjectLitAr.push(true);
317                     }
318                     var isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1];
319                     
320                     if (isInObjectLitAr &&  this.ts.lookTok(1).data == ':' &&
321                         ( this.ts.lookTok(-1).data == '{'  ||  this.ts.lookTok(-1).data == ':' )) {
322                         // see if we can replace..
323                         // remove the quotes..
324                         // should do a bit more checking!!!! (what about wierd char's in the string..
325                         var str = token.data.substring(1,token.data.length-1);
326                         if (/^[a-z_]+$/i.test(str) && ScopeParser.idents.indexOf(str) < 0) {
327                             token.outData = str;
328                         }
329                         
330                          
331                         
332                     }
333                     
334                     
335                     
336                     break;
337                 
338                 
339                 default: 
340                     if ((token.type != "NAME") && (token.type != "KEYW")){
341                         break;
342                     }
343                     print("DEAL WITH NAME:");
344                     // got identifier..
345                     
346                     // look for  { ** : <- indicates obj literal.. ** this could occur with numbers ..
347                     if ((this.ts.lookTok(-1).data == "{") && (this.ts.lookTok(1).data == ":")) {
348                         isObjectLitAr.pop();
349                         isObjectLitAr.push(true);
350                         //println("<i>"+token.data+"</i>");
351                         break;
352                     }
353                     print("DEAL WITH obj lit:");
354                     var isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1];
355                     
356                     if (isInObjectLitAr && (this.ts.lookTok(1).data == ":") && (this.ts.lookTok(-1).data == ",")) {
357                         // skip, it's an object lit key..
358                         //println("<i>"+token.data+"</i>");
359                         break;
360                     }
361                     
362                     
363                     // skip anyting with "." before it..!!
364                      
365                     if (this.ts.lookTok(-1).data == ".") {
366                         // skip, it's an object prop.
367                         //println("<i>"+token.data+"</i>");
368                         break;
369                     }
370                     
371                     //println("<B>SID</B>");
372                    
373                     print("Check eval:");
374                 
375                     symbol = token.data;
376                     
377                      if (this.mode == 'BUILDING_SYMBOL_TREE') {
378
379                         if (symbol == "eval") {
380                             // look back one and see if we can find a comment!!!
381                             if (this.ts.look(-1).type == "COMM") {
382                                 // look for eval:var:noreplace\n
383                                 var _t = this;
384                                 this.ts.look(-1).data.replace(/eval:var:([a-z_]+)/ig, function(m, a) {
385                                     
386                                     var hi = _t.getIdentifier(a, scope);
387                                    // println("PROTECT "+a+" from munge" + (hi ? "FOUND" : "MISSING"));
388                                     if (hi) {
389                                      //   println("PROTECT "+a+" from munge");
390                                         hi.toMunge = false;
391                                     }
392                                     
393                                 });
394                                 
395                                 
396                             } else {
397                                 
398                             
399                                 this.protectScopeFromObfuscation(scope);
400                                 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);
401                             }
402
403                         }
404
405                     } else   if (this.mode == 'CHECKING_SYMBOL_TREE') {
406                         
407                         //println("GOT IDENT: -2 : " + this.ts.lookT(-2).toString() + " <BR> ..... -1 :  " +  this.ts.lookT(-1).toString() + " <BR> "); 
408                         
409                         
410                         
411                         //println("GOT IDENT: <B>" + symbol + "</B><BR/>");
412                              
413                             //println("GOT IDENT (2): <B>" + symbol + "</B><BR/>");
414                         identifier = this.getIdentifier(symbol, scope);
415                         
416                         if (identifier == false) {
417 // BUG!find out where builtin is defined...
418                             if (symbol.length <= 3 &&  Scope.builtin.indexOf(symbol) < 0) {
419                                 // Here, we found an undeclared and un-namespaced symbol that is
420                                 // 3 characters or less in length. Declare it in the global scope.
421                                 // We don't need to declare longer symbols since they won't cause
422                                 // any conflict with other munged symbols.
423                                 this.globalScope.declareIdentifier(symbol, token);
424                                 this.warn("Found an undeclared symbol: " + symbol, true);
425                             }
426                             
427                             //println("GOT IDENT IGNORE(3): <B>" + symbol + "</B><BR/>");
428                         } else {
429                             token.identifier = identifier;
430                             identifier.refcount++;
431                         }
432                        
433                     }
434                     break;
435                 
436                 
437             } // end switch
438             
439             
440             //this.timerPrint("parseScope TOK : " + token.toString()); 
441             token = this.ts.nextTok();
442             //if (this.ts.nextT()) break;
443             
444         }
445     },
446
447
448     parseExpression : function() {
449
450         // Parse the expression until we encounter a comma or a semi-colon
451         // in the same brace nesting, bracket nesting and paren nesting.
452         // Parse functions if any...
453         //println("<i>EXP</i><BR/>");
454         var symbol;
455         var token;
456         var currentScope;
457         var identifier;
458
459         var expressionBraceNesting = this.braceNesting;
460         var bracketNesting = 0;
461         var parensNesting = 0;
462
463         var isObjectLitAr = [ false ];
464         while (token = this.ts.lookTok()) {
465      
466
467             
468             currentScope = this.scopes[this.scopes.length-1];
469             
470             //println("<i>"+token.data+"</i>");
471             
472             switch (token.data.toUpperCase()) {
473
474                 case ';':
475                 case ',':
476                     if (this.braceNesting == expressionBraceNesting &&
477                             bracketNesting == 0 &&
478                             parensNesting == 0) {
479                         return;
480                     }
481                     break;
482
483                 case 'FUNCTION':
484                     this.parseFunctionDeclaration();
485                     break;
486
487                 case '{': //Token.LC:
488                     isObjectLitAr.push(false);
489                     
490                     this.braceNesting++;
491                     break;
492
493                 case '}': //Token.RC:
494                     this.braceNesting--;
495                     isObjectLitAr.pop();
496                     
497                    // assert braceNesting >= expressionBraceNesting;
498                     break;
499
500                 case '[': //Token.LB:
501                     bracketNesting++;
502                     break;
503
504                 case ']': //Token.RB:
505                     bracketNesting--;
506                     break;
507
508                 case '(': //Token.LP:
509                     parensNesting++;
510                     break;
511
512                 case ')': //Token.RP:
513                     parensNesting--;
514                     break;
515             }
516             switch(token.type) {
517                    
518                 case 'STRN': // used for object lit detection..
519                     if (this.ts.lookTok(-1).data == "{" && this.ts.lookTok(1).data == ":" ) {
520                         // then we are in an object lit.. -> we need to flag the brace as such...
521                         isObjectLitAr.pop();
522                         isObjectLitAr.push(true);
523                     }
524                     
525                     
526                      
527                     var isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1];
528                     if (isInObjectLitAr &&  this.ts.lookTok(1).data == ":"  &&
529                         ( this.ts.lookTok(-1).data == "{"  ||  this.ts.lookTok(-1).data == "," )) {
530                         // see if we can replace..
531                         // remove the quotes..
532                         var str = token.data.substring(1,token.data.length-1);
533                         if (/^[a-z_]+$/i.test(str) && ScopeParser.idents.indexOf(str) < 0) {
534                             token.outData = str;
535                         }
536                         
537                          
538                         
539                     }
540                     
541                     break;
542                 
543                   
544                     
545                 /*
546                 case Token.SPECIALCOMMENT:
547                     if (mode == BUILDING_SYMBOL_TREE) {
548                         protectScopeFromObfuscation(currentScope);
549                         this.warn("Using JScript conditional comments is not recommended." + (munge ? " Moreover, using JScript conditional comments reduces the level of compression!" : ""), true);
550                     }
551                     break;
552                 */
553                 case 'NAME':
554                 case 'KEYW':
555                     symbol = token.data;
556                     if (this.ts.lookTok(-1).data == "{"  && this.ts.lookTok(1).data == ":") {
557                         // then we are in an object lit.. -> we need to flag the brace as such...
558                         isObjectLitAr.pop();
559                         isObjectLitAr.push(true);
560                         break;
561                     }
562                     var isInObjectLitAr = isObjectLitAr[isObjectLitAr.length-1];
563                     if (isInObjectLitAr && this.ts.lookTok(-1).data == "," && this.ts.lookTok(1).data == ":") {
564                         break;
565                     }
566                     
567                     if (this.ts.lookTok(-1).data == ".") {
568                         //skip '.'
569                         break;
570                     }
571                     
572                     
573                     
574                     //println("<B>EID</B>");
575                     
576                     
577                     if (this.mode == 'BUILDING_SYMBOL_TREE') {
578
579                         if (symbol == "eval") {
580                             if (this.ts.look(-1).type == 'COMM') {
581                                 // look for eval:var:noreplace\n
582                                 var _t = this;
583                                 this.ts.look(-1).data.replace(/eval:var:([a-z]+)/ig, function(m, a) {
584                                     var hi = _t.getIdentifier(a, currentScope);
585                                    //println("PROTECT "+a+" from munge" + (hi ? "FOUND" : "MISSING"));
586                                     if (hi) {
587                                       //  println("PROTECT "+a+" from munge");
588                                         hi.toMunge = false;
589                                     }
590                                     
591                                     
592                                 });
593                                 
594                             } else {
595                                 this.protectScopeFromObfuscation(currentScope);
596                                 this.warn("Using 'eval' is not recommended." + (this.munge ? " Moreover, using 'eval' reduces the level of compression!" : ""), true);
597                             }
598                             
599
600                         }
601                         break;
602                     } 
603                     if (this.mode == 'CHECKING_SYMBOL_TREE') {
604
605                         identifier = this.getIdentifier(symbol, currentScope);
606                         //println("<B>??</B>");
607                         if (identifier == false) {
608
609                             if (symbol.length <= 3 &&  Scope.builtin.indexOf(symbol) < 0) {
610                                 // Here, we found an undeclared and un-namespaced symbol that is
611                                 // 3 characters or less in length. Declare it in the global scope.
612                                 // We don't need to declare longer symbols since they won't cause
613                                 // any conflict with other munged symbols.
614                                 this.globalScope.declareIdentifier(symbol, token);
615                                 this.warn("Found an undeclared symbol: " + symbol, true);
616                             } else {
617                                 //println("undeclared")
618                             }
619                             
620                             
621                         } else {
622                             //println("<B>++</B>");
623                             token.identifier = identifier;
624                             identifier.refcount++;
625                         }
626                         
627                     }
628                     break;
629             }
630             if (!this.ts.nextTok()) break;
631         }
632     },
633
634
635     parseCatch : function() {
636
637         var symbol;
638         var token;
639         var currentScope;
640         var identifier;
641
642         //token = getToken(-1);
643         //assert token.getType() == Token.CATCH;
644         token = this.ts.nextTok();
645         //assert token.getType() == Token.LP; (
646         token = this.ts.nextTok();
647         //assert token.getType() == Token.NAME;
648         
649         symbol = token.data;
650         currentScope = this.scopes[this.scopes.length-1];
651
652         if (this.mode == 'BUILDING_SYMBOL_TREE') {
653             // We must declare the exception identifier in the containing function
654             // scope to avoid errors related to the obfuscation process. No need to
655             // display a warning if the symbol was already declared here...
656             currentScope.declareIdentifier(symbol, token);
657         } else {
658             //?? why inc the refcount?? - that should be set when building the tree???
659             identifier = this.getIdentifier(symbol, currentScope);
660             identifier.refcount++;
661         }
662
663         token = this.ts.nextTok();
664         //assert token.getType() == Token.RP; // )
665     },
666     
667     parseFunctionDeclaration : function() 
668     {
669
670         var symbol;
671         var token;
672         var currentScope  = false; 
673         var fnScope = false;
674         var identifier;
675         //this.logR("<B>PARSING FUNCTION</B>");
676         currentScope = this.scopes[this.scopes.length-1];
677
678         token = this.ts.nextTok();
679         if (token.type == "NAME") {
680             if (this.mode == 'BUILDING_SYMBOL_TREE') {
681                 // Get the name of the function and declare it in the current scope.
682                 symbol = token.data;
683                 if (currentScope.getIdentifier(symbol) != false) {
684                     this.warn("The function " + symbol + " has already been declared in the same scope...", true);
685                 }
686                 currentScope.declareIdentifier(symbol,token);
687             }
688             token =  this.ts.nextTok();
689         }
690
691         //assert token.getType() == Token.LP;
692         if (this.mode == 'BUILDING_SYMBOL_TREE') {
693             fnScope = new Scope(this.braceNesting, currentScope, token.n, '');
694             
695             //println("STORING SCOPE" + this.ts.cursor);
696             
697             this.indexedScopes[this.ts.cursor] = fnScope;
698             
699         } else {
700             //println("FETCHING SCOPE" + this.ts.cursor);
701             fnScope = this.indexedScopes[this.ts.cursor];
702         }
703         
704         // Parse function arguments.
705         var argpos = 0;
706         while (!this.ts.lookTok().data == ')') { //(token = consumeToken()).getType() != Token.RP) {
707             token = this.ts.nextTok();
708            
709             //assert token.getType() == Token.NAME ||
710             //        token.getType() == Token.COMMA;
711             if (token.type == 'NAME' && this.mode == 'BUILDING_SYMBOL_TREE') {
712                 symbol = token.data;
713                 identifier = fnScope.declareIdentifier(symbol,token);
714                 if (symbol == "$super" && argpos == 0) {
715                     // Exception for Prototype 1.6...
716                     identifier.preventMunging();
717                 }
718                 argpos++;
719             }
720         }
721
722         token = this.ts.nextTok();
723         // assert token.getType() == Token.LC;
724         this.braceNesting++;
725
726         token = this.ts.nextTok();
727         if (token.type == "STRN" && this.ts.lookTok(1).data == ';') {
728             /*
729             
730             NOT SUPPORTED YET!?!!?!
731             
732             // This is a hint. Hints are empty statements that look like
733             // "localvar1:nomunge, localvar2:nomunge"; They allow developers
734             // to prevent specific symbols from getting obfuscated (some heretic
735             // implementations, such as Prototype 1.6, require specific variable
736             // names, such as $super for example, in order to work appropriately.
737             // Note: right now, only "nomunge" is supported in the right hand side
738             // of a hint. However, in the future, the right hand side may contain
739             // other values.
740             consumeToken();
741             String hints = token.getValue();
742             // Remove the leading and trailing quotes...
743             hints = hints.substring(1, hints.length() - 1).trim();
744             StringTokenizer st1 = new StringTokenizer(hints, ",");
745             while (st1.hasMoreTokens()) {
746                 String hint = st1.nextToken();
747                 int idx = hint.indexOf(':');
748                 if (idx <= 0 || idx >= hint.length() - 1) {
749                     if (mode == BUILDING_SYMBOL_TREE) {
750                         // No need to report the error twice, hence the test...
751                         this.warn("Invalid hint syntax: " + hint, true);
752                     }
753                     break;
754                 }
755                 String variableName = hint.substring(0, idx).trim();
756                 String variableType = hint.substring(idx + 1).trim();
757                 if (mode == BUILDING_SYMBOL_TREE) {
758                     fnScope.addHint(variableName, variableType);
759                 } else if (mode == CHECKING_SYMBOL_TREE) {
760                     identifier = fnScope.getIdentifier(variableName);
761                     if (identifier != null) {
762                         if (variableType.equals("nomunge")) {
763                             identifier.preventMunging();
764                         } else {
765                             this.warn("Unsupported hint value: " + hint, true);
766                         }
767                     } else {
768                         this.warn("Hint refers to an unknown identifier: " + hint, true);
769                     }
770                 }
771             }
772             */
773         }
774
775         this.parseScope(fnScope);
776         // now pop it off the stack!!!
777        
778         
779         
780     },
781     
782     protectScopeFromObfuscation : function(scope) {
783             //assert scope != null;
784         
785         if (scope == this.globalScope) {
786             // The global scope does not get obfuscated,
787             // so we don't need to worry about it...
788             return;
789         }
790
791         // Find the highest local scope containing the specified scope.
792         while (scope && scope.parent != this.globalScope) {
793             scope = scope.parent;
794         }
795
796         //assert scope.getParentScope() == globalScope;
797         scope.preventMunging();
798     },
799     
800     getIdentifier: function(symbol, scope) {
801         var identifier;
802         while (scope != false) {
803             identifier = scope.getIdentifier(symbol);
804             //println("ScopeParser.getIdentgetUsedSymbols("+symbol+")=" + scope.getUsedSymbols().join(','));
805             if (identifier) {
806                 return identifier;
807             }
808             scope = scope.parent;
809         }
810         return false;
811     }
812 };