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