JSDOC/Scope.js
[gnome.introspection-doc-generator] / JSDOC / Token.js
index 912d8bf..228f8dd 100644 (file)
@@ -10,15 +10,15 @@ console = imports['console.js'].console;
  *  @prop type {String} type of token
  *     TOKN  (unknown)          - name is UNKNOWN_TOKEN
  *     KEYW  (keyword)          - name is upper case version of keyword
- *     COMM  (comment)          - name is MULTI_LINE_COMM, JSDOC, SINGLE_LINE_COMM
  *     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
  * 
 */
 
@@ -28,7 +28,8 @@ Token = Object.define(
         this.type = type;
         this.name = name;
         this.prefix = '';    
-        this.identifier = false;
+        this.outData = ''; // used by packer/scopeparser
+        this.identifier = false; // used by scope
     }, 
     Object, 
     {