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

Method do_call

g2all/900/module/chain.js:407–420  ·  view source on GitHub ↗
(...args)

Source from the content-addressed store, hash-verified

405 // need it
406
407 do_call(...args) {
408 if (this.position) {
409 throw Error('chain not empty');
410 }
411 try {
412 this.push_call(...args);
413 this.push_get_retval();
414 this.push_get_errno();
415 this.push_end();
416 this.run();
417 } finally {
418 this.reset();
419 }
420 }
421
422 call_void(...args) {
423 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