()
| 336 | } |
| 337 | |
| 338 | driveIndexer(): Map<DeclarationNode, IndexedComponent> { |
| 339 | const {rootNames, options} = readNgcCommandLineAndConfiguration(this.commandLineArgs); |
| 340 | const host = createCompilerHost({options}); |
| 341 | const program = createProgram({rootNames, host, options}); |
| 342 | return (program as NgtscProgram).getIndexedComponents(); |
| 343 | } |
| 344 | |
| 345 | driveDocsExtraction(entryPoint: string): DocEntry[] { |
| 346 | const {rootNames, options} = readNgcCommandLineAndConfiguration(this.commandLineArgs); |
no test coverage detected