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  *     COMM  (comment)          - name is MULTI_LINE_COMM, JSDOC, SINGLE_LINE_COMM
14  *     NAME  (name/identifier)  - name is NAME
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   (regular expression) - name is REGX
20  *  @prop name {String} see type details above
21  * 
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     }, 
32     Object, 
33     {
34         
35         toRaw : function(lvl)
36         {
37             lvl = lvl || 0;
38             
39             var ret =  this.data ;
40             if (this.items) {
41                 var ar = [];
42                 Roo.each(this.items, function(ai) {
43                     
44                     var str = '';
45                     Roo.each(ai, function(it) {
46                         str += it.toRaw(lvl + 1);
47                     })
48                     ar.push(str);
49                     
50                 })
51                 ret +=   ar.join('');
52                 
53             }
54             if (this.props) {
55                 for (var i in this.props) {
56                     ret += this.props[i].key.toRaw(lvl+1) + ' : ';
57                     Roo.each(this.props[i].val, function(e) {
58                         ret+=e.toRaw(lvl+1);
59                     })
60                     
61                 }
62             }
63             
64             
65             
66             return this.prefix +   ret;
67              
68         },
69
70         toJS : function() {
71             
72             try {
73                 var _tmp = '';
74                 eval( "_tmp = " + this.data);
75                 return _tmp;
76             } catch( e) {
77                 return "ERROR unparsable" + this.data;
78             }
79         },
80          
81                         
82
83         is : function(what) {
84             return this.name === what || this.type === what;
85         }
86 });
87