ceb024d6c0a4ebda8e9943ea97baf02815a8a1e8
[gnome.introspection-doc-generator] / JSDOC / Walker2.js
1 //<Script type="text/javascript">
2 XObject      = imports.XObject.XObject;
3
4 Scope        = imports.Scope.Scope;
5 DocComment   = imports.DocComment.DocComment;
6 Symbol       = imports.Symbol.Symbol;
7
8
9 /**
10 * Scope stuff
11
12 * // FIXME - I need this to do next() without doccomments..
13 */
14
15 Walker2 = XObject.define(
16     function(ts) {
17         this.ts = ts;
18         this.warnings = [];
19         this.scopes = [];
20         this.indexedScopes = {};
21         this.symbols = {};
22         //this.timer = new Date() * 1;
23        
24     },
25     Object,
26     
27     {
28     /*
29         timer: 0,
30         timerPrint: function (str) {
31             var ntime = new Date() * 1;
32             var tdif =  ntime -this.timer;
33             this.timer = ntime;
34             var pref = '';
35             if (tdif > 100) { //slower ones..
36                 pref = '***';
37             }
38             print(pref+'['+tdif+']'+str);
39             
40         },
41         */
42         warn: function(s) {
43             //this.warnings.push(s);
44             print("WARNING:" + htmlescape(s) + "<BR>");
45         },
46         // defaults should not be initialized here =- otherwise they get duped on new, rather than initalized..
47         warnings : false,
48         ts : false,
49         scopes : false,
50         global : false,
51         mode : "", //"BUILDING_SYMBOL_TREE",
52         braceNesting : 0,
53         indexedScopes : false,
54         munge: true,
55         symbols: false, /// object store of sumbols..
56
57
58
59
60         buildSymbolTree : function()
61         {
62             //print("<PRE>");
63             
64             this.ts.rewind();
65             this.braceNesting = 0;
66             this.scopes = [];
67             this.aliases = {};
68              
69             this.globalScope = new Scope(-1, false, -1, '$global$');
70             indexedScopes = { 0 : this.globalScope };
71             
72             this.mode = 'BUILDING_SYMBOL_TREE';
73             this.parseScope(this.globalScope);
74             
75         },
76         
77
78
79         log : function(str)
80         {
81               //print("<B>LOG:</B>" + htmlescape(str) + "<BR/>\n");
82         },
83         logR : function(str)
84         {
85                 //print("<B>LOG:</B>" + str + "<BR/>");
86         },
87
88        
89         currentDoc: false,
90
91
92         parseScope : function(scope, ealiases) // parse a token stream..
93         {
94             //this.timerPrint("parseScope EnterScope"); 
95             
96             var aliases = {};
97             var fixAlias = function(str, nomore)
98             {
99                 var ar = str.split('.');
100                 var m = ar.shift();
101                 
102                 //print(str +"?=" +aliases.toSource());
103                 if (aliases[m] == undefined) {
104                     return str;
105                 }
106                 var ret = aliases[m] + (ar.length? '.' : '' )+ ar.join('.');
107                 if (nomore !== true) {
108                     ret = fixAlias(ret, true);
109                 }
110                 
111                 
112                 
113                 return ret;
114             };
115
116             
117             
118             if (ealiases != undefined) {
119                 // copy it down..
120                 for(var i in ealiases) {
121                     aliases[i] = ealiases[i];
122                 }
123                 
124                 
125             } else {
126                 ealiases = {};
127             }
128             //print("STARTING SCOPE WITH: " + ealiases.toSource());
129             var symbol;
130             var token;
131             
132             var identifier;
133
134             var expressionBraceNesting = this.braceNesting;
135             var bracketNesting = 0;
136             var parensNesting = 0;
137            
138             
139             var l1 = '', l2 = '';
140             var scopeName ='';
141             
142             
143             var locBraceNest = 0;
144             // determines if we are in object literals...
145             
146             var isObjectLitAr = [ false ];
147             //print("SCOPE: ------------------START ----------------");
148             this.scopesIn(scope);
149             var scopeLen = this.scopes.length;
150             
151             if (this.ts.cursor < 1) {
152               // this.ts.cursor--; // hopeflly this kludge will work
153             }
154             
155             
156             //print(JSON.stringify(this.ts, null, 4)); Seed.quit();
157             
158             while (null != (token = this.ts.next())) {
159                 print("TOK"+ token.toString());
160                 //  this.timerPrint("parseScope AFTER lookT: " + token.toString()); 
161                   
162                 if (token.is('COMM')) {
163                       
164                  
165                     if (token.name != 'JSDOC') {
166                         //print("Walker2 : spce is not JSDOC");
167                         continue; //skip.
168                     }
169                     if (this.currentDoc) {
170                         // add it to the current scope????
171                         
172                         this.addSymbol('', true);
173
174                         //throw "Unconsumed Doc (TOKwhitespace): " + this.currentDoc.toSource();
175                     }
176                     
177                     
178                     var newDoc = new DocComment(token.data);
179                     
180                     // it's a scope changer..
181                     if (newDoc.getTag("scope").length) {
182                         //print("Walker2 : doctag changes scope");
183                         //throw "done";
184                         scope.ident = '$private$|' + newDoc.getTag("scope")[0].desc;
185                         continue;
186                     }
187                     
188                     // it's a scope changer..
189                     if (newDoc.getTag("scopeAlias").length) {
190                         //print(newDoc.getTag("scopeAlias").toSource());
191                         // @scopeAlias a=b
192                         //print("Walker2 : doctag changes scope (alias)");
193                         var sal = newDoc.getTag("scopeAlias")[0].desc.split("=");
194                         aliases[sal[0]] = sal[1];
195                         
196                         continue;
197                     }
198                     
199                     
200                     /// got a  doc comment..
201                     //token.data might be this.??? (not sure though)
202                     //print("Walker2 : setting currentDoc");
203                     this.currentDoc = newDoc;
204                     continue;
205                 }
206                 
207                 // catch the various issues .. - scoe changes or doc actions..
208                 
209               
210                 
211                 // things that stop comments carrying on...??
212                 
213                 if (this.currentDoc && (
214                         token.data == ';' || 
215                         token.data == '}')) {
216                     this.addSymbol('', true);
217                     //throw "Unconsumed Doc ("+ token.toString() +"): " + this.currentDoc.toSource();
218                 }
219                     
220                 
221                 // the rest are scoping issues...
222                 
223                 // var a = b;
224                 
225                  if (token.name == 'VAR' &&
226                  
227                         this.ts.lookTok(1).type == 'NAME' &&
228                         this.ts.lookTok(2).data == '-' &&
229                         this.ts.lookTok(3).type == 'NAME'  &&
230                         this.ts.lookTok(4).data == ';'  
231                         
232                  
233                  ) {
234                     //print("SET ALIAS:" + this.ts.lookTok(1).data +'=' + this.ts.lookTok(3).data);
235                      
236                     aliases[this.ts.lookTok(1).data] = this.ts.lookTok(3).data;
237                     
238                 
239                 }
240                 
241                 
242               
243                 // extends scoping  *** not sure if the can be x = Roo.apply(....)
244                 // xxx.extends(a,b, {
245                     // $this$=b|b.prototype
246                 // xxx.apply(a, {
247                     // a  << scope
248                 // xxx.applyIf(a, {
249                     // a  << scope
250                 if (token.type = 'NAME') {
251                     
252                     //print("TOK(ident)"+ token.toString());
253                     
254                     
255                        
256                     
257                     
258                     if (/\.extend$/.test(token.data) &&
259                         this.ts.lookTok(1).data == '(' &&
260                         this.ts.lookTok(2).type == 'NAME' &&
261                         this.ts.lookTok(3).data == ',' &&
262                         this.ts.lookTok(4).type == 'NAME' &&
263                         this.ts.lookTok(5).data == ',' &&
264                         this.ts.lookTok(6).data == '{' 
265                            
266                         ) {
267                         // ignore test for ( a and ,
268                         this.ts.nextTok(); /// (
269                         token = this.ts.nextTok(); // a
270                         scopeName = token.data;
271                         
272                         if (this.currentDoc) {
273                             this.addSymbol(scopeName,false,'OBJECT');
274
275                         }
276                         this.ts.nextTok(); // ,
277                         this.ts.nextTok(); // b
278                         
279                         
280                         this.ts.nextTok(); // ,
281                         token = this.ts.nextTok(); // {
282                             
283                         scopeName = fixAlias(scopeName);
284                         
285                         var fnScope = new Scope(this.braceNesting, scope, token.n, 
286                             '$this$=' + scopeName  + '|'+scopeName+'.prototype');
287                         this.indexedScopes[this.ts.cursor] = fnScope;
288                         scope = fnScope;
289                         this.scopesIn(fnScope);
290                        
291                         locBraceNest++;
292                         //print(">>" +locBraceNest);
293                         continue; // no more processing..
294                         
295                     }
296                     
297                     // a = Roo.extend(parentname, {
298                         
299                      if (/\.extend$/.test(token.data) &&
300                         this.ts.lookTok(-2).type == 'NAME'  &&
301                         this.ts.lookTok(-1).data == '=' &&
302                         this.ts.lookTok(1).data == '(' &&
303                         this.ts.lookTok(2).type == 'NAME' &&
304                         this.ts.lookTok(3).data == ',' &&
305                         this.ts.lookTok(4).data == '{' 
306                         ) {
307                         // ignore test for ( a and ,
308                         token = this.ts.lookTok(-2);
309                         scopeName = token.data;
310                         if (this.currentDoc) {
311                             this.addSymbol(scopeName,false,'OBJECT');
312
313                         }
314                         this.ts.nextTok(); /// (
315                         this.ts.nextTok(); // parent
316                         
317                         this.ts.nextTok(); // ,
318                         token =  this.ts.nextTok(); // {
319                              
320                         
321                         scopeName = fixAlias(scopeName);
322                         var fnScope = new Scope(this.braceNesting, scope, token.n, 
323                             '$this$=' + scopeName  + '|'+scopeName+'.prototype');
324                         this.indexedScopes[this.ts.cursor] = fnScope;
325                         scope = fnScope;
326                         this.scopesIn(fnScope);
327                        
328                         locBraceNest++;
329                         //print(">>" +locBraceNest);
330                         continue; // no more processing..
331                         
332                     }
333                     
334                     
335                      // apply ( XXXX,  {
336                     /*
337                     print(JSON.stringify([
338                         token.data,
339                         this.ts.lookTok(1).data ,
340                         this.ts.lookTok(2).type ,
341                         this.ts.lookTok(3).data ,
342                         this.ts.lookTok(4).data 
343                     ], null, 4));
344                     */
345                     
346                     if (/\.(applyIf|apply)$/.test(token.data) && 
347                         this.ts.lookTok(1).data == '('  &&
348                         this.ts.lookTok(2).type == 'NAME' &&
349                         this.ts.lookTok(3).data == ','  &&
350                         this.ts.lookTok(4).data == '{' 
351                         
352                         ) {
353                         this.ts.nextTok(); /// (
354                          
355                         //print("GOT : applyIF!"); 
356                          
357                         token = this.ts.nextTok(); // b
358                         scopeName = token.data;
359                         
360                                       
361                         if (this.currentDoc) {
362                             this.addSymbol(scopeName,false,'OBJECT');
363                         }
364                      
365
366                         
367                         this.ts.nextTok(); /// ,
368                         this.ts.nextTok(); // {
369                         scopeName = fixAlias(scopeName);
370                         var fnScope = new Scope(this.braceNesting, scope, token.n, scopeName);
371                         this.indexedScopes[this.ts.cursor] = fnScope;
372                         scope = fnScope;
373                         this.scopesIn(fnScope);
374                          
375                         locBraceNest++;
376                         //print(">>" +locBraceNest);
377                         continue; // no more processing..
378                     }
379                     
380                     
381                     // xxx = new yyy ( {
382                         
383                     // change scope to xxxx
384                     /*
385                     print(JSON.stringify([
386                         this.ts.lookTok(1).data ,
387                         this.ts.lookTok(2).name ,
388                         this.ts.lookTok(3).type ,
389                         this.ts.lookTok(4).data ,
390                         this.ts.lookTok(5).data 
391                     ], null, 4));
392                     */
393                     if ( this.ts.lookTok(1).data == '=' &&
394                         this.ts.lookTok(2).name == 'NEW' &&
395                         this.ts.lookTok(3).type == 'NAME' &&
396                         this.ts.lookTok(4).data == '(' &&
397                         this.ts.lookTok(5).data == '{' 
398                         ) {
399                         scopeName = token.data;
400                         if (this.currentDoc) {
401                             this.addSymbol(scopeName,false,'OBJECT');
402                             
403                         }
404                         
405                         this.ts.nextTok(); /// =
406                         this.ts.nextTok(); /// new
407                         this.ts.nextTok(); /// yyy
408                         this.ts.nextTok(); /// (
409                         this.ts.nextTok(); /// {
410                             
411                         scopeName = fixAlias(scopeName);
412                         var fnScope = new Scope(this.braceNesting, scope, token.n, scopeName);
413                         this.indexedScopes[this.ts.cursor] = fnScope;
414                         scope = fnScope;
415                         this.scopesIn(fnScope);
416                          
417                         locBraceNest++;
418                         //print(">>" +locBraceNest);
419                         
420                         continue; // no more processing..
421                     }
422                     
423
424                     
425                     
426                     
427                     
428                     
429                     
430                     
431                     
432                     
433                     
434                     
435                     
436                     
437                     
438                     
439                     
440                     
441                     // eval can be prefixed with a hint hider for the compresser..
442                     if ((token.data == 'eval') || /\.eval$/.test(token.data)) {
443                         this.currentDoc = false;
444                         continue;
445                     }
446                     
447                     if (this.currentDoc) {
448                         //print(token.toString());
449                         
450                         // ident : function ()
451                         // ident = function ()
452                         var atype = 'OBJECT';
453                         
454                         if (((this.ts.lookTok(1).data == ':' )|| (this.ts.lookTok(1).data == '=')) &&
455                             (this.ts.lookTok(2).name == "FUNCTION")
456                             ) {
457                                 atype = 'FUNCTION';
458                         }
459                         
460                         //print("ADD SYM:" + atype + ":" + token.toString() + this.ts.lookTok(1).toString() + this.ts.lookTok(2).toString());
461                         
462                         this.addSymbol(
463                             this.ts.lookTok(-1).data == '.' ? token.data :    fixAlias(token.data),
464                             false,
465                             atype);
466                         
467                     }
468                  
469                     
470                     continue; // dont care about other idents..
471                     
472                 }        
473                 if (token.type == "STRN")   {
474                     if (this.currentDoc) {
475                         this.addSymbol(token.data.substring(1,token.data.length-1),false,'OBJECT');
476
477                     }
478                 }
479             
480                 // really we only have to deal with object constructs and function calls that change the scope...
481                 
482                 
483                  if (token.name == 'FUNCTION') {
484                      
485                     // see if we have an unconsumed doc...
486                     
487                     if (this.currentDoc) {
488                             print(this.ts.dumpToCur());
489                             throw "Unhandled doc (TOKfunction)" + token.toString();
490                             //this.addSymbol(this.currentDoc.getTag('class')[0].name, true);
491
492                             //throw "Unconsumed Doc: (TOKrbrace)" + this.currentDoc.toSource();
493                     }
494                     
495                      
496                      
497                      
498                      
499                     /// foo = function() {} << really it set's the 'this' scope to foo.prototype
500                     //$this$=foo.prototype|$private$|foo.prototype
501         
502                     if (
503                             (this.ts.lookTok(-1).data == '=') && 
504                             (this.ts.lookTok(-2).type == 'NAME')
505                         ) {
506                         scopeName = this.ts.lookTok(-2).data;
507                         this.ts.balanceN('(');
508                         token = this.ts.nextTok(); // should be {
509                         //print("FOO=FUNCITON() {}" + this.ts.context() + "\n" + token.toString());
510                         
511                         
512                         scopeName = fixAlias(scopeName);
513                         var fnScope = new Scope(this.braceNesting, scope, token.n, 
514                             '$this$='+scopeName+'.prototype|$private$|'+scopeName+'.prototype');
515                             
516                         this.indexedScopes[this.ts.cursor] = fnScope;
517                         //scope = fnScope;
518                         //this.scopesIn(fnScope);
519                         this.parseScope(fnScope, aliases);
520                         
521                         
522                        
523                         locBraceNest++;
524                         //print(">>" +locBraceNest);
525                         continue; // no more processing..    
526                           
527                         
528                     }
529                         
530                 
531                 // foo = new function() {}
532                         // is this actually used much!?!?!
533                         //$private$
534                         
535                     if (
536                             (this.ts.lookTok(-1).name == 'NEW') && 
537                             (this.ts.lookTok(-2).data == '=') &&
538                             (this.ts.lookTok(-3).type = 'FUNCTION')
539                         ) {
540                         //scopeName = this.ts.look(-3).data;
541                         this.ts.balanceN(Script.TOKlparen);
542                         token = this.ts.nextTok(); // should be {
543                             scopeName = fixAlias(scopeName);
544                         var fnScope = new Scope(this.braceNesting, scope, token.n, '$private$');
545                         this.indexedScopes[this.ts.cursor] = fnScope;
546                         //scope = fnScope;
547                         //this.scopesIn(fnScope);
548                         this.parseScope(fnScope, aliases);
549                         
550                         locBraceNest++;
551                         //print(">>" +locBraceNest);
552                         continue; // no more processing..    
553                           
554                         
555                     }    
556                    
557                     
558     ///==== check/set isObjectLitAr ??                
559                     
560                     
561                  // foo: function() {}
562                         // no change to scoping..
563                         
564                     //print("checking for : function() {"); 
565                     //print( [this.ts.lookTok(-3).type , this.ts.lookTok(-2).type , this.ts.lookTok(-1).type ].join(":"));
566                     if (
567                             (this.ts.lookTok(-1).data == ':') && 
568                             (this.ts.lookTok(-2).type == 'NAME') &&
569                             (this.ts.lookTok(-3).data == '(' || this.ts.lookTok(-3).data== ',') 
570                         ) {
571                         int("got for : function() {"); 
572                             
573                         //scopeName = this.ts.look(-3).data;
574                         this.ts.balanceN(Script.TOKlparen);
575                         //print(token.toString())
576                         token = this.ts.nextTok(); // should be {
577                         //print(token.toString())
578                         scopeName = fixAlias(scopeName);
579                         var fnScope = new Scope(this.braceNesting, scope, token.n, '');
580                         this.indexedScopes[this.ts.cursor] = fnScope;
581                         //scope = fnScope;
582                         //this.scopesIn(fnScope);
583                          this.parseScope(fnScope, aliases);
584                         locBraceNest++;
585                         //print(">>" +locBraceNest);
586                         continue; // no more processing..    
587                           
588                     } 
589                /// function foo() {} << really it set's the 'this' scope to foo.prototype
590                         //$this$=foo|$private$
591                         //$this$=foo
592                         
593                     if (
594                             (this.ts.lookTok(1).type == 'NAME') 
595                         ) {
596                         //scopeName = this.ts.look(-3).data;
597                         this.ts.balanceN('(');
598                         token = this.ts.nextTok(); // should be {
599                             
600                         var fnScope = new Scope(this.braceNesting, scope, token.n, '');
601                         this.indexedScopes[this.ts.cursor] = fnScope;
602                         //scope = fnScope;
603                         //this.scopesIn(fnScope);
604                         this.parseScope(fnScope, aliases);
605                         locBraceNest++;
606                         //print(">>" +locBraceNest);
607                         continue; // no more processing..    
608                           
609                     }
610                     
611                      
612                 // foo = new (function() { }
613                 // (function() { }
614                 // RETURN function(...) {
615                     
616                     if (
617                            // (this.ts.lookTok(-1).tokN == Script.TOKlparen) && 
618                             (this.ts.lookTok(1).name != 'NAME')   
619                             
620                         //    (this.ts.lookTok(-2).tokN == Script.TOKnew) &&
621                          //   (this.ts.lookTok(-3).tokN == Script.TOKassign) &&
622                          //   (this.ts.lookTok(-4).tokN == Script.TOKidentifier)
623                         ) {
624                         //scopeName = this.ts.look(-3).data;
625                         this.ts.balanceN('(');
626                         token = this.ts.nextTok(); // should be {
627                         var fnScope = new Scope(this.braceNesting, scope, token.n, '$private$');
628                         this.indexedScopes[this.ts.cursor] = fnScope;
629                         //scope = ;
630                         //this.scopesIn(fnScope);
631                          this.parseScope(fnScope, aliases);
632                         locBraceNest++;
633                         //print(">>" +locBraceNest);
634                         continue; // no more processing..    
635                           
636                         
637                     }
638                     
639                     
640                     print(this.ts.context());
641                     throw "dont know how to handle function syntax??";
642                     
643                     continue;
644                     
645                     
646                     
647                     
648                 } // end checking for TOKfunction
649                     
650                 if (token.data == '{') {
651                     
652                      // foo = { // !var!!!
653                         //$this$=foo|Foo
654                
655                 
656                     if (
657                             (this.ts.lookTok(-1).data == '=') &&
658                             (this.ts.lookTok(-2).type == 'NAME') &&
659                             (this.ts.lookTok(-3).nane != 'VAR')  
660                         ) {
661                             
662                             scopeName = this.ts.look(-2).data;
663                             scopeName = fixAlias(scopeName);
664                             var fnScope = new Scope(this.braceNesting, scope, token.n, 
665                                 '$this$='+scopeName + '|'+scopeName
666                             );
667                             this.indexedScopes[this.ts.cursor] = fnScope;
668                             scope = fnScope;
669                             this.scopesIn(fnScope);
670                             
671                               
672                             locBraceNest++;
673                             //print(">>" +locBraceNest);
674                             continue; // no more processing..   
675                     }
676                     // foo : {
677                     // ?? add |foo| ????
678                       
679                     //print("GOT LBRACE : check for :");
680                     if (
681                             (this.ts.lookTok(-1).data == ':') &&
682                             (this.ts.lookTok(-2).type == 'NAME') &&
683                             (this.ts.lookTok(-3).name != 'VAR') 
684                         ) {
685                             
686                             scopeName = this.ts.lookTok(-2).data;
687                             scopeName = fixAlias(scopeName);
688                             var fnScope = new Scope(this.braceNesting, scope, token.n, scopeName);
689                             this.indexedScopes[this.ts.cursor] = fnScope;
690                             scope = fnScope;
691                             this.scopesIn(fnScope);
692                             
693                             locBraceNest++;
694                             //print(">>" +locBraceNest);
695                             continue; // no more processing..   
696                     }
697                     var fnScope = new Scope(this.braceNesting, scope, token.n, '');
698                     this.indexedScopes[this.ts.cursor] = fnScope;
699                     scope = fnScope;
700                     this.scopesIn(fnScope);
701                    
702                     locBraceNest++;
703                     //print(">>" +locBraceNest);
704                     continue;
705                     
706                 }
707                 if (token.data == '{') {
708                     
709                      
710                         if (this.currentDoc) {
711                             this.addSymbol('', true);
712
713                             //throw "Unconsumed Doc: (TOKrbrace)" + this.currentDoc.toSource();
714                         }
715                         
716                        
717                         locBraceNest--;
718                         
719                             //assert braceNesting >= scope.getBraceNesting();
720                         var closescope = this.scopeOut();   
721                         scope = this.scopes[this.scopes.length-1];
722                         //print("<<:" +  locBraceNest)
723                         //print("<<<<<< " + locBraceNest );
724                         if (locBraceNest < 0) {
725                            // print("POPED OF END OF SCOPE!");
726                             ///this.scopeOut();   
727                             //var ls = this.scopeOut();
728                             //ls.getUsedSymbols();
729                             return;
730                         }
731                         continue;
732                 }
733               
734                 
735             }
736             
737             
738         },
739      
740          
741         addSymbol: function(lastIdent, appendIt, atype )
742         {
743             print("Walker.addSymbol : " + lastIdent);
744             
745             /*if (!this.currentDoc.tags.length) {
746                 
747               
748                 //print(this.currentDoc.toSource());
749                 //  this.currentDoc = false;
750                 
751                 print("SKIP ADD SYM: no tags");
752                 print(this.currentDoc.src);
753                 return;
754             }
755             */
756             if (this.currentDoc.getTag('private').length) {
757                 
758               
759                 //print(this.currentDoc.toSource());
760                  this.currentDoc = false;
761                 print("SKIP ADD SYM:  it's private");
762                 return;
763             }
764             
765             var token = this.ts.lookTok(0);
766             if (typeof(appendIt) == 'undefined') {
767                 appendIt= false;
768             }
769           //  print(this.currentDoc.toSource(););
770             if (this.currentDoc.getTag('event').length) {
771                 //?? why does it end up in desc - and not name/...
772                 print(this.currentDoc.getTag('event')[0]);
773                 lastIdent = '*' + this.currentDoc.getTag('event')[0].desc;
774                 //lastIdent = '*' + lastIdent ;
775             }
776             if (!lastIdent.length && this.currentDoc.getTag('property').length) {
777                 lastIdent = this.currentDoc.getTag('property')[0].name;
778                 //lastIdent = '*' + lastIdent ;
779             }
780             
781             var _s = lastIdent;
782             if (!/\./.test(_s)) {
783                     
784                 //print("WALKER ADDsymbol: " + lastIdent);
785                 
786                 var s = [];
787                 for (var i = 0; i < this.scopes.length;i++) {
788                     s.push(this.scopes[i].ident);
789                 }
790                 s.push(lastIdent);
791                 
792                 var s = s.join('|').split('|');
793                print("Walker:ADDSymbol: " + s.join('|') );
794                 var _t = '';
795                  _s = '';
796                 
797                 /// fixme - needs
798                 for (var i = 0; i < s.length;i++) {
799                     
800                     if (!s[i].length) {
801                         continue;
802                     }
803                     if ((s[i] == '$private$') || (s[i] == '$global$')) {
804                         _s = '';
805                         continue;
806                     }
807                     if (s[i].substring(0,6) == '$this$') {
808                         var ts = s[i].split('=');
809                         _t = ts[1];
810                         continue;
811                     }
812                     // when to use $this$ (probabl for events)
813                     _s += _s.length ? '.' : '';
814                     _s += s[i];
815                 }
816                     
817                 
818                 /// calc scope!!
819                 //print("ADDING SYMBOL: "+ s.join('|') +"\n"+ _s + "\n" +Script.prettyDump(this.currentDoc.toSource()));
820                 print("Walker.addsymbol - add : " + _s);
821                 if (appendIt && !lastIdent.length) {
822                     
823                     // append, and no symbol???
824                     
825                     // see if it's a @class
826                     if (this.currentDoc.getTag('class').length) {
827                         _s = this.currentDoc.getTag('class')[0].desc;
828                         var symbol = new Symbol(_s, [], "CONSTRUCTOR", this.currentDoc);
829                         Parser       = imports.Parser.Parser;
830                         Parser.addSymbol(symbol);
831                         this.symbols[_s] = symbol;
832                         return;
833                     }
834                     
835                    // if (this.currentDoc.getTag('property').length) {
836                      //   print(Script.pretStringtyDump(this.currentDoc.toSource));
837                     //    throw "Add Prop?";
838                     //}
839                     
840                     _s = _s.replace(/\.prototype.*$/, '');
841                     if (typeof(this.symbols[_s]) == 'undefined') {
842                         print("Symbol:" + _s);
843                         print(this.currentDoc.src);
844                         
845                         throw "Trying to append symbol, but no doc available";
846                     }
847                         
848                     for (var i =0; i < this.currentDoc.tags.length;i++) {
849                         this.symbols[_s].addDocTag(this.currentDoc.tags[i]);
850                     }
851                     this.currentDoc = false;
852                     return;
853                 }
854             }    
855             print("Walker.addsymbol - chkdup: " + _s);
856             if (typeof(this.symbols[_s]) != 'undefined') {
857                 
858                 if (this.symbols[_s].comment.hasTags) {
859                     // then existing comment doesnt has tags 
860                     throw {
861                         name: "ArgumentError", 
862                         message:"DUPLICATE Symbol " + _s
863                     };
864                      
865                 }
866                 // otherwise existing comment has tags - overwrite..
867                 
868                 
869             }
870             print("Walker.addsymbol - ATYPE: " + _s);
871
872             if (typeof(atype) == "undefined") {
873                 atype = 'OBJECT'; //this.currentDoc.getTag('class').length ? 'OBJECT' : 'FUNCTION';;
874                }
875             
876             print("Walker.addsymbol - add : ");
877             var symbol = new Symbol(_s, [], atype, this.currentDoc);
878             Parser       = imports.Parser.Parser;
879             Parser.addSymbol(symbol);
880             this.symbols[_s] = symbol;
881             
882              this.currentDoc = false;
883             
884         },
885         
886         
887         
888         
889         scopesIn : function(s)
890         {
891             this.scopes.push(s);
892             //print(">>>" + this.ts.context()  + "\n>>>"+this.scopes.length+":" +this.scopeListToStr());
893             
894         },
895         scopeOut : function()
896         {
897             
898            // print("<<<" + this.ts.context()  + "\n<<<"+this.scopes.length+":" +this.scopeListToStr());
899             return this.scopes.pop();
900             
901         },
902         
903         scopeListToStr : function()
904         {
905             var s = [];
906             for (var i = 0; i < this.scopes.length;i++) {
907                 s.push(this.scopes[i].ident);
908             }
909             return  s.join('\n\t');
910             
911         }
912         
913     
914     
915      
916 });