(options: ng.CompilerOptions, p: ng.Program)
| 162 | } |
| 163 | |
| 164 | export function expectNoDiagnosticsInProgram(options: ng.CompilerOptions, p: ng.Program) { |
| 165 | expectNoDiagnostics(options, [ |
| 166 | ...p.getNgStructuralDiagnostics(), |
| 167 | ...p.getTsSemanticDiagnostics(), |
| 168 | ...p.getNgSemanticDiagnostics(), |
| 169 | ]); |
| 170 | } |
| 171 | |
| 172 | export function normalizeSeparators(path: string): string { |
| 173 | return path.replace(/\\/g, '/'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…