MCPcopy Create free account
hub / github.com/GamerHack/GamerHack.github.io / do_call

Method do_call

g2all/700/module/chain.js:402–415  ·  view source on GitHub ↗
(...args)

Source from the content-addressed store, hash-verified

400 // need it
401
402 do_call(...args) {
403 if (this.position) {
404 throw Error("chain not empty");
405 }
406 try {
407 this.push_call(...args);
408 this.push_get_retval();
409 this.push_get_errno();
410 this.push_end();
411 this.run();
412 } finally {
413 this.reset();
414 }
415 }
416
417 call_void(...args) {
418 this.do_call(...args);

Callers 3

call_voidMethod · 0.95
call_intMethod · 0.95
callMethod · 0.95

Calls 6

push_callMethod · 0.95
push_get_retvalMethod · 0.95
push_get_errnoMethod · 0.95
push_endMethod · 0.95
runMethod · 0.95
resetMethod · 0.95

Tested by

no test coverage detected