2003/06/18 07:04:38
[org.ibex.core.git] / src / org / xwt / js / CompiledFunctionImpl.java
index 9d8a7f3..e111040 100644 (file)
@@ -6,7 +6,7 @@ import java.io.*;
 
 // FIXME: could use some cleaning up
 /** a JavaScript function, compiled into bytecode */
-class CompiledFunctionImpl extends JS.Callable implements ByteCodes, Tokens {
+class CompiledFunctionImpl extends JSCallable implements ByteCodes, Tokens {
 
     // Fields and Accessors ///////////////////////////////////////////////
 
@@ -425,3 +425,6 @@ class CompiledFunctionImpl extends JS.Callable implements ByteCodes, Tokens {
     }
 
 }
+
+class JSCallable extends JS.Callable {
+}