(...args)
| 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); |
no test coverage detected