(xml: string, file = 'FooMapper.xml')
| 13 | // (no parser dependency). |
| 14 | |
| 15 | const methodNodes = (xml: string, file = 'FooMapper.xml') => |
| 16 | extractFromSource(file, xml).nodes.filter((n) => n.kind === 'method'); |
| 17 | |
| 18 | const methodNames = (xml: string, file = 'FooMapper.xml') => |
| 19 | methodNodes(xml, file).map((n) => n.qualifiedName); |
no test coverage detected