*
* TODO(jat): lift most of this interface to platform-independent code (only
* exceptions still need to be made platform-independent)
*/
public void invoke(int /*long*/jsthisInt, int /*long*/[] jsargsInt, int /*long*/returnValueInt) {
JsValue jsthis = new JsValueMoz32/*64*/(jsthisInt);
JsValue jsargs[] = new JsValue[jsargsInt.length];
for (int i = 0; i < jsargsInt.length; ++i) {
jsargs[i] = new JsValueMoz32/*64*/(jsargsInt[i]);
}
JsValue returnValue = new JsValueMoz32/*64*/(returnValueInt);
invoke0(jsthis, jsargs, returnValue);
}