gecko-dev/js/js2/java/NativeFunction.java
1999-06-11 23:05:16 +00:00

19 lines
369 B
Java

class NativeFunction extends JSObject {
NativeFunction(ControlNode aBody)
{
super("Function", null);
body = aBody;
}
JSValue call(Environment theEnv, JSValue rV)
{
ControlNode c = body;
while (c != null) c = c.eval(theEnv);
return theEnv.resultValue;
}
ControlNode body;
}