cbcbc37acce3170e81fb8301c6592304bbbb4e58
[gnome.introspection-doc-generator] / JSDOC / Token.vala
1 /**
2  *      @class Token
3  * 
4  *  @prop data {String} raw value of token
5  *  @prop type {String} type of token
6  *     TOKN  (unknown)          - name is UNKNOWN_TOKEN
7  * 
8  *     KEYW  (keyword)          - name is upper case version of keyword
9  *     NAME  (name/identifier)  - name is NAME
10  *     COMM  (comment)          - name is MULTI_LINE_COMM, JSDOC, SINGLE_LINE_COMM
11  *     PUNC  (puctuation)       - name is String description of punctionan (eg LEFTPARAM)
12  *     WHIT  (white space)      - name is SPACE,NEWLINE
13  *     STRN  (string)           - name is DOBULE_QUOTE, SINGLE_QUOTE
14  *     NUMB  (number)           - name is OCTAL,DECIMAL,HEC_DEC
15  *     REGX   (reg.expression)  - name is REGX
16  *  @prop name {String} see type details above
17  *  @prop identifier {Identifier} identifier class if relivant
18  * 
19  * 
20  * 
21  * old mappings:
22  * 
23  * Script.TOKidentifier  - type == 'NAME'
24  * Script.TOKassign  = data == '='
25  * Script.TOKsemicolon data == '';
26  * 
27  * 
28  * 
29 */
30 namespace JSDOC
31 {
32     int Token_id = 1;
33
34     public class Token : Object {
35         
36         int id;
37         
38         public string data;
39         public string type;
40         public string name;
41         public int line;
42         public string prefix;
43         
44         public string outData;
45         
46         public string identifier;
47         
48          // used to stuff tokens together when building a tree..
49         public Gee.ArrayList<Gee.ArrayList<Token>> items;
50         
51         // props??? what's this???
52         
53         public Token(string data, string type, string name, int line)
54         {
55             this.data = data;
56             this.type = type;
57             this.name = name;
58             this.line = line;
59             this.prefix = "";    
60             this.outData = null; // used by packer/scopeparser
61             this.identifier = null; // used by scope
62             this.id = tokid++;
63             
64             
65             this.items = new Gee.ArrayList<Gee.ArrayList<Token>>();
66         }
67     
68         public string asString()
69         {
70             return "line:%d, type %s, name %s, data : %s , outData: %s".printf(
71                     this.line,
72                     this.type,
73                     this.name,
74                     this.data,
75                     this.outData == null ? "" : this.outData
76             )
77             
78         }
79         
80         
81         public string toRaw : function(int lvl = 0)
82         {
83             
84             
85             var ret =  this.data ;
86             
87             forach(var ai in this.items ) {
88                 
89                 string str = "";
90                 foreach( var it in ai) {
91                     str += it.toRaw(lvl+1);
92                 }
93                 ret += str;
94             }
95             
96             /* -- what is a prop..
97             if (this.props) {
98                 for (var i in this.props) {
99                     ret += this.props[i].key.toRaw(lvl+1) + ' : ';
100                     this.props[i].val.forEach( function(e) {
101                         ret+=e.toRaw(lvl+1);
102                     })
103                     
104                 }
105             }
106             
107             */
108             
109             return this.prefix +   ret;
110              
111         },
112         /*
113         toJS : function() {
114             
115             try {
116                 var _tmp = '';
117                 eval( "_tmp = " + this.data);
118                 return _tmp;
119             } catch( e) {
120                 return "ERROR unparsable" + this.data;
121             }
122         },
123         */
124                         
125
126         public bool is(string what) {
127             return this.name == what || this.type == what;
128         }
129 });
130