2003/11/03 06:36:13
[org.ibex.core.git] / src / org / xwt / js / Lexer.java
index 81066bb..1e2494e 100644 (file)
@@ -108,7 +108,6 @@ class Lexer implements Tokens {
                 case 'n': return s.equals("null") ? NULL : -1;
                 case 't': c=s.charAt(3);
                     if (c=='e') { if (s.charAt(2)=='u' && s.charAt(1)=='r') return TRUE; }
-                    else if (c=='s') { if (s.charAt(2)=='i' && s.charAt(1)=='h') return THIS; }
                     return -1;
                 case 'w': if (s.equals("with")) return RESERVED; else return -1;
                 case 'v': if (s.equals("void")) return RESERVED; else return -1;