(..._args: any[])
| 15 | let self: any; |
| 16 | class Type { |
| 17 | method(..._args: any[]) { |
| 18 | args = _args; |
| 19 | self = this; |
| 20 | return 'OK'; |
| 21 | } |
| 22 | } |
| 23 | const method = Type.prototype.method; |
| 24 | let delegateMethod: Function; |
no outgoing calls
no test coverage detected