(destCls: string, curClsName: string)
| 455 | export function traceJavaMethods_custom(clazzes: string[], clsWhitelist?: null | any, stackFilter?: null | string) { |
| 456 | |
| 457 | function match(destCls: string, curClsName: string) { |
| 458 | let mode = destCls[0]; |
| 459 | let ex = destCls.substr(2); |
| 460 | if (mode == 'E') { |
| 461 | return ex == curClsName; |
| 462 | } |
| 463 | else { |
| 464 | return curClsName.match(ex); |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | function sendContent(obj: any) { |
| 469 | let str = JSON.stringify(obj); |
no outgoing calls
no test coverage detected