(isExported: boolean)
| 135 | // is stale, even though it was not able to fully understand the import during the first pass. |
| 136 | |
| 137 | const componentSource = (isExported: boolean): string => ` |
| 138 | import {Component} from '@angular/core'; |
| 139 | |
| 140 | @Component({ |
| 141 | selector: 'some-cmp', |
| 142 | template: 'Not important', |
| 143 | standalone: false, |
| 144 | }) |
| 145 | ${isExported ? 'export' : ''} class Cmp {} |
| 146 | `; |
| 147 | |
| 148 | const env = LanguageServiceTestEnv.setup(); |
| 149 | const project = env.addProject('test', { |
no outgoing calls
no test coverage detected
searching dependent graphs…