| 153 | } |
| 154 | |
| 155 | class DummyConsole implements Console { |
| 156 | public warnings: string[] = []; |
| 157 | |
| 158 | log(message: string) {} |
| 159 | |
| 160 | warn(message: string) { |
| 161 | this.warnings.push(message); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | function bootstrap( |
| 166 | cmpType: any, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…