(cls: string, name: string)
| 369 | |
| 370 | const methods = cg.getNodesByKind('method'); |
| 371 | const find = (cls: string, name: string) => |
| 372 | methods.find((m) => m.name === name && m.filePath.endsWith(`${cls}.java`)); |
| 373 | |
| 374 | const action = find('UserAction', 'toLogin2'); |
| 375 | const bo = find('UserBO', 'toLogin2'); |
no outgoing calls
no test coverage detected