mass rename and rebranding from xwt to ibex - fixed to use ixt files
[org.ibex.core.git] / src / org / ibex / js / Lexer.java
similarity index 99%
rename from src/org/xwt/js/Lexer.java
rename to src/org/ibex/js/Lexer.java
index 0bf311f..6e77eb7 100644 (file)
@@ -17,7 +17,7 @@
  * Contributor(s): Roger Lawrence, Mike McCabe
  */
 
-package org.xwt.js;
+package org.ibex.js;
 import java.io.*;
 
 /** Lexes a stream of characters into a stream of Tokens */
@@ -147,7 +147,7 @@ class Lexer implements Tokens {
         in.unread();
         String str = in.getString();
         int result = getKeyword(str);
-        if (result == RESERVED) throw new LexerException("The reserved word \"" + str + "\" is not permitted in XWT scripts");
+        if (result == RESERVED) throw new LexerException("The reserved word \"" + str + "\" is not permitted in Ibex scripts");
         if (result != -1) return result;
         this.string = str.intern();
         return NAME;