JSDOC/Token.js
authorAlan Knowles <alan@akbkhome.com>
Mon, 28 Jun 2010 08:41:37 +0000 (16:41 +0800)
committerAlan Knowles <alan@akbkhome.com>
Mon, 28 Jun 2010 08:41:37 +0000 (16:41 +0800)
JSDOC/Token.js

index 0508dda..95f84ca 100644 (file)
@@ -9,6 +9,7 @@ console = imports.console.console;
  *  @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
@@ -18,7 +19,17 @@ console = imports.console.console;
  *     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
+ *  @prop identifier {Identifier} identifier class if relivant
+ * 
+ * 
+ * 
+ * old mappings:
+ * 
+ * Script.TOKidentifier  - type == 'NAME'
+ * Script.TOKassign  = data == '='
+ * Script.TOKsemicolon data == '';
+ * 
+ * 
  * 
 */