loadCompiled method

void loadCompiled(
  1. JsCompiled compiled
)
override

Implementation

void loadCompiled(JsCompiled compiled) {
  if (compiled is IOJsCompiled) {
    _arguments[0].ptrValue = compiled.pointer;
    _arguments[0].type = ARG_TYPE_RAW_POINTER;
    _arguments[1].setInt(compiled.length);
    return _action(JS_ACTION_LOAD_COMPILED, 2);
  }
}