(...args)
| 12 | ); |
| 13 | |
| 14 | function CALL_DELEGATE(...args) { |
| 15 | this.call = this._createCall("sync"); |
| 16 | return this.call(...args); |
| 17 | } |
| 18 | |
| 19 | function CALL_ASYNC_DELEGATE(...args) { |
| 20 | this.callAsync = this._createCall("async"); |
nothing calls this directly
no test coverage detected
searching dependent graphs…