(condition: boolean, msg?: string)
| 274 | } |
| 275 | |
| 276 | export function assert(condition: boolean, msg?: string): void { |
| 277 | /* v8 ignore next 3 */ |
| 278 | if (!condition) { |
| 279 | throw new Error(msg || `unexpected compiler condition`) |
| 280 | } |
| 281 | } |
| 282 | |
| 283 | export function findDir( |
| 284 | node: ElementNode, |
no outgoing calls
no test coverage detected