2003/11/03 06:36:13
[org.ibex.core.git] / src / org / xwt / js / Parser.java
index 6ce0760..5e37596 100644 (file)
@@ -157,7 +157,6 @@ class Parser extends Lexer implements ByteCodes {
         // all of these simply push values onto the stack
         case NUMBER: b.add(parserLine, LITERAL, number); break;
         case STRING: b.add(parserLine, LITERAL, string); break;
-        case THIS: b.add(parserLine, TOPSCOPE, null); break;
         case NULL: b.add(parserLine, LITERAL, null); break;
         case TRUE: case FALSE: b.add(parserLine, LITERAL, new Boolean(tok == TRUE)); break;