local scope vars indexed by number
[org.ibex.core.git] / src / org / ibex / js / Tokens.java
index 8970e14..126a10b 100644 (file)
@@ -96,6 +96,7 @@ interface Tokens {
     public static final int GRAMMAR       = 78;  // the grammar-definition operator (::=)
     public static final int ADD_TRAP      = 79;  // the add-trap operator (++=)
     public static final int DEL_TRAP      = 80;  // the del-trap operator (--=)
+    public static final int CASCADE       = 81;  // cascade expression - arg==true for write cascade
  
     public static final int MAX_TOKEN = DEL_TRAP;
 
@@ -112,7 +113,7 @@ interface Tokens {
         "HOOK", "COLON", "INC", "DEC", "DOT", "FUNCTION", "IF",
         "ELSE", "SWITCH", "CASE", "DEFAULT", "WHILE", "DO", "FOR",
         "VAR", "WITH", "CATCH", "FINALLY", "RESERVED", "GRAMMAR",
-        "ADD_TRAP", "DEL_TRAP"
+        "ADD_TRAP", "DEL_TRAP", "CASCADE"
     };
 
 }