JSDOC/Token.js
[gnome.introspection-doc-generator] / JSDOC / Token.js
1 //<Script type="text/javascript">
2
3 imports['Object.js'].load(Object);
4 JSDOC   = imports['JSDOC.js'].JSDOC;
5 console = imports['console.js'].console;
6 /**
7  *      @class Token
8  * 
9  *  @prop data {String} raw value of token
10  *  @prop type {String} type of token
11  *     TOKN  (unknown)          - name is UNKNOWN_TOKEN
12  *     KEYW  (keyword)          - name is upper case version of keyword
13  *     NAME  (name/identifier)  - name is NAME
14  *     COMM  (comment)          - name is MULTI_LINE_COMM, JSDOC, SINGLE_LINE_COMM
15  *     PUNC  (puctuation)       - name is String description of punctionan (eg LEFTPARAM)
16  *     WHIT  (white space)      - name is SPACE,NEWLINE
17  *     STRN  (string)           - name is DOBULE_QUOTE, SINGLE_QUOTE
18  *     NUMB  (number)           - name is OCTAL,DECIMAL,HEC_DEC
19  *     REGX   (reg.expression)  - name is REGX
20  *  @prop name {String} see type details above
21  *  @prop indentifier {Identifier} identifier class if relivant
22  * 
23 */
24
25 Token = Object.define(
26     function(data, type, name) {
27         this.data = data;
28         this.type = type;
29         this.name = name;
30         this.prefix = '';    
31         this.outData = false; // used by packer/scopeparser
32         this.identifier = false; // used by scope
33     }, 
34     Object, 
35     {
36         
37         toRaw : function(lvl)
38         {
39             lvl = lvl || 0;
40             
41             var ret =  this.data ;
42             if (this.items) {
43                 var ar = [];
44                 Roo.each(this.items, function(ai) {
45                     
46                     var str = '';
47                     Roo.each(ai, function(it) {
48                         str += it.toRaw(lvl + 1);
49                     })
50                     ar.push(str);
51                     
52                 })
53                 ret +=   ar.join('');
54                 
55             }
56             if (this.props) {
57                 for (var i in this.props) {
58                     ret += this.props[i].key.toRaw(lvl+1) + ' : ';
59                     Roo.each(this.props[i].val, function(e) {
60                         ret+=e.toRaw(lvl+1);
61                     })
62                     
63                 }
64             }
65             
66             
67             
68             return this.prefix +   ret;
69              
70         },
71
72         toJS : function() {
73             
74             try {
75                 var _tmp = '';
76                 eval( "_tmp = " + this.data);
77                 return _tmp;
78             } catch( e) {
79                 return "ERROR unparsable" + this.data;
80             }
81         },
82          
83                         
84
85         is : function(what) {
86             return this.name === what || this.type === what;
87         }
88 });
89