JSDOC/Symbol.js
[gnome.introspection-doc-generator] / JSDOC / Symbol.js
1 //<script type="text/javascript">
2
3 XObject         = imports.XObject.XObject;
4
5 SymbolSet       = imports.SymbolSet.SymbolSet;
6 //Parser          = imports.Parser.Parser;
7 DocComment      = imports.DocComment.DocComment;
8 DocTag          = imports.DocTag.DocTag;
9 /**
10         Create a new Symbol.
11         @class Represents a symbol in the source code.
12  */
13 Symbol = XObject.define(
14     function() {
15         this.init();
16         if (arguments.length) this.populate.apply(this, arguments);
17         
18     },
19     Object,
20     {
21         
22         
23         name : "",
24         defaultValue : "",
25         params : [],
26         $args : [], // original arguments used when constructing.
27         addOn : "",
28         alias : "",
29         augments : [], // Doctag[]
30         author : "",
31         classDesc : "",
32         comment : {},
33         deprecated : "",
34         desc : "",
35         //events : false,
36         example : "",
37         exceptions : [],  // Doctag[]
38         inherits : [],  // Doctag[]
39         //inheritsFrom : [],
40         isa : "OBJECT", // OBJECT//FUNCTION
41         isEvent : false,
42         isConstant : false,
43         isIgnored : false,
44         isInner : false,
45         isNamespace : false,
46         isPrivate : false,
47         isStatic : false,
48         memberOf : "",
49         methods : [], // Symbol[]
50         _name : "",
51         _params : [], //Doctag[]
52         properties : [], //Doctag[]
53         requires : [],  //Doctag[]
54         returns : [], //Doctag[]
55         see : [], //Doctag[]
56         since : "",
57         srcFile : {},
58         type : "",
59         version : "",
60         childClasses : [],
61         cfgs : {},
62         
63         
64             
65         
66         toJSON : function()
67         {
68             
69            
70             var ret = { '*object' : 'Symbol' };
71             for (var i in this) {
72                 if (Symbol.hide.indexOf(i) > -1) {
73                     continue;
74                 }
75                 switch (typeof(this[i])) {
76                     case 'function':
77                         continue;
78                     case 'object':
79                         switch(i) {
80                             //arrays..
81                             case 'params' : 
82                             case 'augments' :                             
83                             case 'exceptions' :  
84                             case 'inherits' :
85                             case 'methods' :
86                             case '_params': 
87                             case 'properties': 
88                             case 'requires':
89                             case 'returns':
90                             case 'see':
91                             case 'cfgs': // key val of doctags..
92                             case 'comment' :
93                                 ret[i] = this[i]
94                                 continue; 
95                             
96                             //skip
97                             case 'inheritsFrom':
98                             case 'childClasses':
99                                 continue;
100             
101                             default:
102                                 print("object? :" + i);
103                                 Seed.quit();
104                         }
105                         
106                         
107                     case 'string':
108                     case 'number':
109                     case 'boolean':
110                         ret[i] = this[i]; continue;
111                     default:
112                         print("unknown type:" + typeof(this[i]));
113                         Seed.quit();
114                    }
115             }
116             return ret;
117             
118         },
119         
120         init : function() 
121         {
122             // only initialize arrays / objects..
123             this.params = [];
124             this.$args = [];
125             
126             //this.events = [];
127             this.exceptions = [];
128             this.inherits = [];
129             //
130             this.isa = "OBJECT"; // OBJECT//FUNCTION
131             this.methods = [];
132             this._params = [];
133             this.properties = [];
134             this.requires = [];
135             this.returns = [];
136             this.see = [];
137             this.srcFile = {};
138             
139             
140             this.cfgs = {};
141             // derived later?
142             this.inheritsFrom = [];
143             this.childClasses = [];
144             
145             this.comment = new DocComment();
146             this.comment.isUserComment =  false;
147             
148                
149         },
150
151         serialize : function() {
152             var keys = [];
153             for (var p in this) {
154                 keys.push (p);
155             }
156             keys = keys.sort();
157             
158             var out = "";
159             for (var i in keys) {
160                 if (typeof this[keys[i]] == "function") continue;
161                 out += "     " +keys[i]+" => "+
162                     (   
163                         (typeof(this[keys[i]]) != "object") ?  
164                             this[keys[i]] :
165                             "[" +typeof(this[keys[i]])+"]"
166                     ) + 
167                     ",\n";
168             }
169             return "\n{\n" + out + "}\n";
170         },
171
172         clone : function() {
173             var clone = new Symbol();
174             clone.populate.apply(clone, this.$args); // repopulate using the original arguments
175             clone.srcFile = this.srcFile; // not the current srcFile, the one when the original was made
176             return clone;
177         },
178
179
180
181
182         //__defineSetter__("name",
183         setName  : function(n) { 
184                 n = n.replace(/^_global_[.#-]/, ""); 
185                 n = n.replace(/\.prototype\.?/g, '#'); 
186                  n = n.replace(/#$/g, ''); 
187                 this._name = n;
188                 this.name = n; // real!
189             },
190         //);
191         //__defineGetter__("name",
192         getName : function() { return this._name; },
193         //);
194         //__defineSetter__("params", 
195         setParams  :function(v) {
196                 for (var i = 0, l = v.length; i < l; i++) {
197                     if (v[i].constructor != DocTag) { // may be a generic object parsed from signature, like {type:..., name:...}
198                         var ty = v[i].hasOwnProperty('type') ? v[i].type : '';
199                         this._params[i] = new DocTag(
200                             "param"+((ty)?" {"+ty+"}":"")+" "+v[i].name);
201                     }
202                     else {
203                         this._params[i] = v[i];
204                     }
205                 }
206                 this.params = this._params;
207             },
208         //);
209
210
211         //__defineGetter__("params",
212         getParams : function() { return this._params; },
213         //);
214
215         populate : function(
216                 /** String */ name,
217                 /** Object[] */ params,
218                 /** String */ isa,
219                 /** DocComment */ comment
220         ) {
221             this.$args = arguments;
222             //println("Symbol created: " + isa + ":" + name);
223             this.setName(name);
224             this.alias = this.getName();
225             this.setParams(params);
226             this.isa = (isa == "VIRTUAL")? "OBJECT":isa;
227             this.comment = comment || new DocComment("");
228             this.srcFile = Symbol.srcFile;
229             
230            
231             
232             if (this.is("FILE") && !this.alias) this.alias = this.srcFile;
233
234             this.setTags();
235             
236             //if (typeof PluginManager != "undefined") {
237             //    PluginManager.run("onSymbol", this);
238             //}
239         },
240
241         setTags : function() {
242             // @author
243             var authors = this.comment.getTag("author");
244             if (authors.length) {
245                 this.author = authors.map(function($){return $.desc;}).join(", ");
246             }
247             
248             /*~t
249                 assert("testing Symbol");
250                 
251                 requires("../lib/JSDOC/DocComment.js");
252                 requires("../frame/String.js");
253                 requires("../lib/JSDOC/DocTag.js");
254
255                 var sym = new Symbol("foo", [], "OBJECT", new DocComment("/**@author Joe Smith*"+"/"));
256                 assertEqual(sym.author, "Joe Smith", "@author tag, author is found.");
257             */
258             // @desc
259             var mth = this.comment.getTag("method");
260             if (mth.length) {
261                 this.isa = "FUNCTION";
262             }
263             // @desc
264             var descs = this.comment.getTag("desc");
265             if (descs.length) {
266                 this.desc = descs.map(function($){return $.desc;}).join("\n"); // multiple descriptions are concatenated into one
267             }
268             
269             /*~t
270                 var sym = new Symbol("foo", [], "OBJECT", new DocComment("/**@desc This is a description.*"+"/"));
271                 assertEqual(sym.desc, "This is a description.", "@desc tag, description is found.");
272             */
273             
274             // @overview
275             if (this.is("FILE")) {
276                 if (!this.alias) this.alias = this.srcFile;
277                 
278                 var overviews = this.comment.getTag("overview");
279                 if (overviews.length) {
280                     this.desc = [this.desc].concat(overviews.map(function($){return $.desc;})).join("\n");
281                 }
282             }
283             
284             /*~t
285                 var sym = new Symbol("foo", [], "FILE", new DocComment("/**@overview This is an overview.*"+"/"));
286                 assertEqual(sym.desc, "\nThis is an overview.", "@overview tag, description is found.");
287             */
288             
289             // @since
290             var sinces = this.comment.getTag("since");
291             if (sinces.length) {
292                 this.since = sinces.map(function($){return $.desc;}).join(", ");
293             }
294             
295             /*~t
296                 var sym = new Symbol("foo", [], "FILE", new DocComment("/**@since 1.01*"+"/"));
297                 assertEqual(sym.since, "1.01", "@since tag, description is found.");
298             */
299             
300             // @constant
301             if (this.comment.getTag("constant").length) {
302                 this.isConstant = true;
303                 this.isa = 'OBJECT';
304             }
305             
306             /*~t
307                 var sym = new Symbol("foo", [], "FILE", new DocComment("/**@constant*"+"/"));
308                 assertEqual(sym.isConstant, true, "@constant tag, isConstant set.");
309             */
310             
311             // @version
312             var versions = this.comment.getTag("version");
313             if (versions.length) {
314                 this.version = versions.map(function($){return $.desc;}).join(", ");
315             }
316             
317             /*~t
318                 var sym = new Symbol("foo", [], "FILE", new DocComment("/**@version 2.0x*"+"/"));
319                 assertEqual(sym.version, "2.0x", "@version tag, version is found.");
320             */
321             
322             // @deprecated
323             var deprecateds = this.comment.getTag("deprecated");
324             if (deprecateds.length) {
325                 this.deprecated = deprecateds.map(function($){return $.desc;}).join("\n");
326             }
327             
328             /*~t
329                 var sym = new Symbol("foo", [], "FILE", new DocComment("/**@deprecated Use other method.*"+"/"));
330                 assertEqual(sym.deprecated, "Use other method.", "@deprecated tag, desc is found.");
331             */
332             
333             // @example
334             var examples = this.comment.getTag("example");
335             if (examples.length) {
336                 this.example = examples[0];
337             }
338             
339             /*~t
340                 var sym = new Symbol("foo", [], "FILE", new DocComment("/**@example This\n  is an example.*"+"/"));
341                 assertEqual(sym.example, "This\n  is an example.", "@deprecated tag, desc is found.");
342             */
343             
344             // @see
345             var sees = this.comment.getTag("see");
346             if (sees.length) {
347                 var thisSee = this.see;
348                 sees.map(function($){thisSee.push($.desc);});
349             }
350             
351             /*~t
352                 var sym = new Symbol("foo", [], "FILE", new DocComment("/**@see The other thing.*"+"/"));
353                 assertEqual(sym.see, "The other thing.", "@see tag, desc is found.");
354             */
355             
356             // @class
357             var classes = this.comment.getTag("class");
358             if (classes.length) {
359                 print(JSON.stringify(this,null,4));
360                 this.isa = "CONSTRUCTOR";
361                 this.classDesc = classes[0].desc; // desc can't apply to the constructor as there is none.
362                 if (!this.classDesc) {
363                     this.classDesc = this.desc;
364                    }
365                 
366                 
367             }
368             
369             /*~t
370                 var sym = new Symbol("foo", [], "OBJECT", new DocComment("/**@class This describes the class.*"+"/"));
371                 assertEqual(sym.isa, "CONSTRUCTOR", "@class tag, makes symbol a constructor.");
372                 assertEqual(sym.classDesc, "This describes the class.", "@class tag, class description is found.");
373             */
374             
375             // @namespace
376             var namespaces = this.comment.getTag("namespace");
377             if (namespaces.length) {
378                 this.classDesc = namespaces[0].desc+"\n"+this.desc; // desc can't apply to the constructor as there is none.
379                 this.isNamespace = true;
380             }
381             
382             /*~t
383                 var sym = new Symbol("foo", [], "OBJECT", new DocComment("/**@namespace This describes the namespace.*"+"/"));
384                 assertEqual(sym.classDesc, "This describes the namespace.\n", "@namespace tag, class description is found.");
385             */
386             
387             // @param
388             var params = this.comment.getTag("param");
389             if (params.length) {
390                 // user-defined params overwrite those with same name defined by the parser
391                 var thisParams = this.getParams();
392
393                 if (thisParams.length == 0) { // none exist yet, so just bung all these user-defined params straight in
394                     this.setParams(params);
395                 }
396                 else { // need to overlay these user-defined params on to existing parser-defined params
397                     for (var i = 0, l = params.length; i < l; i++) {
398                         if (thisParams[i]) {
399                             if (params[i].type) thisParams[i].type = params[i].type;
400                             thisParams[i].name = params[i].name;
401                             thisParams[i].desc = params[i].desc;
402                             thisParams[i].isOptional = params[i].isOptional;
403                             thisParams[i].defaultValue = params[i].defaultValue;
404                         }
405                         else thisParams[i] = params[i];
406                     }
407                 }
408             }
409             
410             /*~t
411                 var sym = new Symbol("foo", [{type: "array", name: "pages"}], "FUNCTION", new DocComment("/**Description.*"+"/"));
412                 assertEqual(sym.params.length, 1, "parser defined param is found.");
413                 
414                 sym = new Symbol("foo", [], "FUNCTION", new DocComment("/**Description.\n@param {array} pages*"+"/"));
415                 assertEqual(sym.params.length, 1, "user defined param is found.");
416                 assertEqual(sym.params[0].type, "array", "user defined param type is found.");
417                 assertEqual(sym.params[0].name, "pages", "user defined param name is found.");
418                 
419                 sym = new Symbol("foo", [{type: "array", name: "pages"}], "FUNCTION", new DocComment("/**Description.\n@param {string} uid*"+"/"));
420                 assertEqual(sym.params.length, 1, "user defined param overwrites parser defined param.");
421                 assertEqual(sym.params[0].type, "string", "user defined param type overwrites parser defined param type.");
422                 assertEqual(sym.params[0].name, "uid", "user defined param name overwrites parser defined param name.");
423             
424                 sym = new Symbol("foo", [{type: "array", name: "pages"}, {type: "number", name: "count"}], "FUNCTION", new DocComment("/**Description.\n@param {string} uid*"+"/"));
425                 assertEqual(sym.params.length, 2, "user defined params  overlay parser defined params.");
426                 assertEqual(sym.params[1].type, "number", "user defined param type overlays parser defined param type.");
427                 assertEqual(sym.params[1].name, "count", "user defined param name overlays parser defined param name.");
428
429                 sym = new Symbol("foo", [], "FUNCTION", new DocComment("/**Description.\n@param {array} pages The pages description.*"+"/"));
430                 assertEqual(sym.params.length, 1, "user defined param with description is found.");
431                 assertEqual(sym.params[0].desc, "The pages description.", "user defined param description is found.");
432             */
433             
434             // @constructor
435             if (this.comment.getTag("constructor").length) {
436                 this.isa = "CONSTRUCTOR";
437             }
438             
439             /*~t
440                 var sym = new Symbol("foo", [], "OBJECT", new DocComment("/**@constructor*"+"/"));
441                 assertEqual(sym.isa, "CONSTRUCTOR", "@constructor tag, makes symbol a constructor.");
442             */
443             
444             // @static
445             if (this.comment.getTag("static").length) {
446                 this.isStatic = true;
447                 if (this.isa == "CONSTRUCTOR") {
448                     this.isNamespace = true;
449                 }
450             }
451             
452                 // @static
453             if (this.comment.getTag("singleton").length) {
454                 this.isStatic = true;
455                 print('------------- got singleton ---------------' + this.isa);
456                 if (this.isa == "CONSTRUCTOR") {
457                         this.isNamespace = true;
458                 }
459             }
460             
461             
462             
463             /*~t
464                 var sym = new Symbol("foo", [], "OBJECT", new DocComment("/**@static\n@constructor*"+"/"));
465                 assertEqual(sym.isStatic, true, "@static tag, makes isStatic true.");
466                 assertEqual(sym.isNamespace, true, "@static and @constructor tag, makes isNamespace true.");
467             */
468             
469             // @inner
470             if (this.comment.getTag("inner").length) {
471                 this.isInner = true;
472                 this.isStatic = false;
473             }
474             
475             /*~t
476                 var sym = new Symbol("foo", [], "OBJECT", new DocComment("/**@inner*"+"/"));
477                 assertEqual(sym.isStatic, false, "@inner tag, makes isStatic false.");
478                 assertEqual(sym.isInner, true, "@inner makes isInner true.");
479             */
480             
481             // @field
482             if (this.comment.getTag("field").length) {
483                 this.isa = "OBJECT";
484             }
485             
486             /*~t
487                 var sym = new Symbol("foo", [], "FUNCTION", new DocComment("/**@field*"+"/"));
488                 assertEqual(sym.isa, "OBJECT", "@field tag, makes symbol an object.");
489             */
490             
491             // @function
492             if (this.comment.getTag("function").length) {
493                 this.isa = "FUNCTION";
494             }
495             
496             // @param
497             if (this.comment.getTag("param").length && this.isa == "OBJECT" ) {
498                 // change a property to a function..
499                 this.isa = "FUNCTION";
500             }
501             
502             
503             /*~t
504                 var sym = new Symbol("foo", [], "OBJECT", new DocComment("/**@function*"+"/"));
505                 assertEqual(sym.isa, "FUNCTION", "@function tag, makes symbol a function.");
506             */
507             
508             // @event
509             var events = this.comment.getTag("event");
510             if (events.length) {
511                 this.isa = "FUNCTION";
512                 this.isEvent = true;
513             }
514             
515             /*~t
516                 var sym = new Symbol("foo", [], "OBJECT", new DocComment("/**@event*"+"/"));
517                 assertEqual(sym.isa, "FUNCTION", "@event tag, makes symbol a function.");
518                 assertEqual(sym.isEvent, true, "@event makes isEvent true.");
519             */
520             
521             // @name
522             var names = this.comment.getTag("name");
523             if (names.length) {
524                 this.setName(names[0].desc);
525             }
526             
527             /*~t
528                 // todo
529             */
530             
531             // @property
532             var properties = this.comment.getTag("property");
533             if (properties.length) {
534                 thisProperties = this.properties;
535                 for (var i = 0; i < properties.length; i++) {
536                     var property = new Symbol(this.alias+"#"+properties[i].name, [], "OBJECT", new DocComment("/**"+properties[i].desc+"\n@name "+properties[i].name+"\n@memberOf "+this.alias+"#*/"));
537                     // TODO: shouldn't the following happen in the addProperty method of Symbol?
538                     property.name = properties[i].name;
539                     property.memberOf = this.alias;
540                     if (properties[i].type) property.type = properties[i].type;
541                     if (properties[i].defaultValue) property.defaultValue = properties[i].defaultValue;
542                     this.addProperty(property);
543                     imports.Parser.Parser.addSymbol(property);
544                 }
545             }
546             
547             // config..
548             var conf = this.comment.getTag("cfg");
549             if (conf.length) {
550                 for (var i = 0; i < conf.length; i++) {
551                     this.addConfig(conf[i]);
552                 }
553             }
554             
555             /*~t
556                 // todo
557             */
558
559             // @return
560             var returns = this.comment.getTag("return");
561             if (returns.length) { // there can be many return tags in a single doclet
562                 this.returns = returns;
563                 this.type = returns.map(function($){return $.type}).join(", ");
564             }
565             
566             /*~t
567                 // todo
568             */
569             
570             // @exception
571             this.exceptions = this.comment.getTag("throws");
572             
573             /*~t
574                 // todo
575             */
576             
577             // @requires
578             var requires = this.comment.getTag("requires");
579             if (requires.length) {
580                 this.requires = requires.map(function($){return $.desc});
581             }
582             
583             /*~t
584                 // todo
585             */
586             
587             // @type
588             var types = this.comment.getTag("type");
589             if (types.length) {
590                 this.type = types[0].desc; //multiple type tags are ignored
591             }
592             
593             /*~t
594                 // todo
595             */
596             
597             // @private
598             if (this.comment.getTag("private").length || this.isInner) {
599                 this.isPrivate = true;
600             }
601             
602             // @ignore
603             if (this.comment.getTag("ignore").length) {
604                 this.isIgnored = true;
605             }
606             
607             /*~t
608                 // todo
609             */
610             
611             // @inherits ... as ...
612             var inherits = this.comment.getTag("inherits");
613             if (inherits.length) {
614                 for (var i = 0; i < inherits.length; i++) {
615                     if (/^\s*([a-z$0-9_.#-]+)(?:\s+as\s+([a-z$0-9_.#]+))?/i.test(inherits[i].desc)) {
616                         var inAlias = RegExp.$1;
617                         var inAs = RegExp.$2 || inAlias;
618
619                         if (inAlias) inAlias = inAlias.replace(/\.prototype\.?/g, "#");
620                         
621                         if (inAs) {
622                             inAs = inAs.replace(/\.prototype\.?/g, "#");
623                             inAs = inAs.replace(/^this\.?/, "#");
624                         }
625
626                         if (inAs.indexOf(inAlias) != 0) { //not a full namepath
627                             var joiner = ".";
628                             if (this.alias.charAt(this.alias.length-1) == "#" || inAs.charAt(0) == "#") {
629                                 joiner = "";
630                             }
631                             inAs = this.alias + joiner + inAs;
632                         }
633                     }
634                     this.inherits.push({alias: inAlias, as: inAs});
635                 }
636             }
637             
638             /*~t
639                 // todo
640             */
641
642             // @augments
643             this.augments = this.comment.getTag("augments");
644             
645             //@extends - Ext
646             if (this.comment.getTag("extends")) {   
647                 this.augments = this.comment.getTag("extends");
648             }
649             
650             
651             // @default
652             var defaults = this.comment.getTag("default");
653             if (defaults.length) {
654                 if (this.is("OBJECT")) {
655                     this.defaultValue = defaults[0].desc;
656                 }
657             }
658             
659             /*~t
660                 // todo
661             */
662             
663             // @memberOf
664             var memberOfs = this.comment.getTag("memberOf");
665             if (memberOfs.length) {
666                 this.memberOf = memberOfs[0].desc;
667                 this.memberOf = this.memberOf.replace(/\.prototype\.?/g, "#");
668                 this.name = this.name.split('.').pop();
669                 this.name = this.name.split('#').pop();
670                 this.name = this.memberOf + this.name;
671                 this._name = this.name
672                 this.alias = this.name;
673             }
674
675             /*~t
676                 // todo
677             */
678             
679             // @public
680             if (this.comment.getTag("public").length) {
681                 this.isPrivate = false;
682             }
683             
684             /*~t
685                 // todo
686             */
687         },
688
689         is : function(what) {
690             return this.isa === what;
691         },
692
693         isBuiltin : function() {
694             return SymbolSet.isBuiltin(this.alias);
695         },
696
697         setType : function(/**String*/comment, /**Boolean*/overwrite) {
698             if (!overwrite && this.type) return;
699             var typeComment = DocComment.unwrapComment(comment);
700             this.type = typeComment;
701         },
702
703         inherit : function(symbol) {
704             if (!this.hasMember(symbol.name) && !symbol.isInner) {
705                 if (symbol.is("FUNCTION"))
706                     this.methods.push(symbol);
707                 else if (symbol.is("OBJECT"))
708                     this.properties.push(symbol);
709             }
710         },
711
712         hasMember : function(name) {
713             return (this.hasMethod(name) || this.hasProperty(name));
714         },
715
716         addMember : function(symbol) {
717             //println("ADDMEMBER: " + this.name +  " ++ " + symbol.name);
718             
719             if (symbol.comment.getTag("cfg").length == 1) { 
720                 symbol.comment.getTag("cfg")[0].memberOf = this.alias;
721                 this.addConfig(symbol.comment.getTag("cfg")[0]);
722                 return;
723             }
724             
725             if (symbol.is("FUNCTION")) { this.addMethod(symbol); }
726             else if (symbol.is("OBJECT")) { this.addProperty(symbol); }
727         },
728
729         hasMethod : function(name) {
730             var thisMethods = this.methods;
731             for (var i = 0, l = thisMethods.length; i < l; i++) {
732                 if (thisMethods[i].name == name) return true;
733                 if (thisMethods[i].alias == name) return true;
734             }
735             return false;
736         },
737
738         addMethod : function(symbol) {
739             var methodAlias = symbol.alias;
740             var thisMethods = this.methods;
741             for (var i = 0, l = thisMethods.length; i < l; i++) {
742                 if (thisMethods[i].alias == methodAlias) {
743                     thisMethods[i] = symbol; // overwriting previous method
744                     return;
745                 }
746             }
747             thisMethods.push(symbol); // new method with this alias
748         },
749
750         hasProperty : function(name) {
751             var thisProperties = this.properties;
752             for (var i = 0, l = thisProperties.length; i < l; i++) {
753                 if (thisProperties[i].name == name) return true;
754                 if (thisProperties[i].alias == name) return true;
755             }
756             return false;
757         },
758
759         addProperty : function(symbol) {
760             var propertyAlias = symbol.alias;
761             var thisProperties = this.properties;
762             for (var i = 0, l = thisProperties.length; i < l; i++) {
763                 if (thisProperties[i].alias == propertyAlias) {
764                     thisProperties[i] = symbol; // overwriting previous property
765                     return;
766                 }
767             }
768
769             thisProperties.push(symbol); // new property with this alias
770         },
771         
772         addDocTag : function(docTag)
773         {
774             this.comment.tags.push(docTag);
775             if (docTag.title == 'cfg') {
776                 this.addConfig(docTag);
777             }
778             
779         },
780         
781         addConfig : function(docTag)
782         {
783             if (typeof(docTag['memberOf']) == 'undefined') {
784                 // remove prototype data...
785                 //var a = this.alias.split('#')[0];
786                 //docTag.memberOf = a;
787                 docTag.memberOf = this.alias;
788             }
789             if (typeof(this.cfgs[docTag.name]) == 'undefined') {
790                 this.cfgs[docTag.name] = docTag;
791             }
792             
793         },
794         configToArray: function()
795         {
796             var r = [];
797             for(var ci in this.cfgs) {
798                 // dont show hidden!!
799                 if (this.cfgs[ci].desc.match(/@hide/)) {
800                     continue;
801                 }
802                 r.push(this.cfgs[ci]); 
803                
804             }
805             return r;
806         }
807 });
808
809 /**
810  * Elements that are not serialized
811  * 
812  */
813 Symbol.hide = [ 
814     '$args' // not needed AFAIK
815 ]
816
817 Symbol.srcFile = ""; //running reference to the current file being parsed
818
819
820 Symbol.fromDump = function(t)
821 {
822     var ns = new Symbol();
823     for (var i in t) {
824         if (typeof(ns[i]) == "undefined") {
825             println("ERR:no default for Symbol:"+ i);
826         }
827         ns[i] = t[i];
828     }
829     return ns;
830 }