(fileName: string)
| 130 | constructor(private context: MockAotContext) {} |
| 131 | |
| 132 | fileExists(fileName: string): boolean { |
| 133 | return this.context.fileExists(fileName); |
| 134 | } |
| 135 | |
| 136 | readFile(fileName: string): string { |
| 137 | return this.context.readFile(fileName); |
nothing calls this directly
no test coverage detected