JSDOC/CompressWhite.js
[gnome.introspection-doc-generator] / JSDOC / Token.js
index 17a5aa2..228f8dd 100644 (file)
@@ -4,18 +4,21 @@ imports['Object.js'].load(Object);
 JSDOC   = imports['JSDOC.js'].JSDOC;
 console = imports['console.js'].console;
 /**
- *     @constructor
+ *     @class Token
  * 
- *  types: 
- *     TOKN  (unknown)
- *     KEYW  (keyword)
- *     COMM  (comment)
- *     NAME  (name / identifier)
- *     PUNC  (puctuation)
- *     WHIT  (white space)
- *     STRN  (string)
- *     NUMB  (number)
- *     REGX   (regular expression)
+ *  @prop data {String} raw value of token
+ *  @prop type {String} type of token
+ *     TOKN  (unknown)          - name is UNKNOWN_TOKEN
+ *     KEYW  (keyword)          - name is upper case version of keyword
+ *     NAME  (name/identifier)  - name is NAME
+ *     COMM  (comment)          - name is MULTI_LINE_COMM, JSDOC, SINGLE_LINE_COMM
+ *     PUNC  (puctuation)       - name is String description of punctionan (eg LEFTPARAM)
+ *     WHIT  (white space)      - name is SPACE,NEWLINE
+ *     STRN  (string)           - name is DOBULE_QUOTE, SINGLE_QUOTE
+ *     NUMB  (number)           - name is OCTAL,DECIMAL,HEC_DEC
+ *     REGX   (reg.expression)  - name is REGX
+ *  @prop name {String} see type details above
+ *  @prop indentifier {Identifier} identifier class if relivant
  * 
 */
 
@@ -24,7 +27,9 @@ Token = Object.define(
         this.data = data;
         this.type = type;
         this.name = name;
-        this.prefix = '';
+        this.prefix = '';    
+        this.outData = ''; // used by packer/scopeparser
+        this.identifier = false; // used by scope
     }, 
     Object, 
     {