2003/11/28 03:26:55
[org.ibex.core.git] / src / org / xwt / js / Interpreter.java
index 5c7163b..0a0b27b 100644 (file)
@@ -241,7 +241,7 @@ class Interpreter implements ByteCodes, Tokens {
                 }
                 Object ret = null;
                 if (v == null) throw je("tried to get the null key from " + o);
-                if (o == null) throw je("tried to get property \"" + v + "\" from the null value @" + pc + "\n" + f.dump());
+                if (o == null) throw je("tried to get property \"" + v + "\" from the null object");
                 if (o instanceof String || o instanceof Number || o instanceof Boolean) {
                     ret = getFromPrimitive(o,v);
                     stack.push(ret);