(clsname: string, overload: any)
| 481 | } |
| 482 | |
| 483 | function getMethodDescription(clsname: string, overload: any) { |
| 484 | // @ts-ignore |
| 485 | let argumentTypes = overload.argumentTypes.map(val => val.className).toString(); |
| 486 | let desc = `${overload.returnType.className} ${clsname}#${overload.methodName}(${argumentTypes})`; |
| 487 | return desc; |
| 488 | } |
| 489 | |
| 490 | function traceJavaMethodsCore(clsname: string) { |
| 491 | const tag = 'traceJavaMethodsCore'; |
no test coverage detected