(expr: o.Expression)
| 62 | } |
| 63 | |
| 64 | export function devOnlyGuardedExpression(expr: o.Expression): o.Expression { |
| 65 | return guardedExpression('ngDevMode', expr); |
| 66 | } |
| 67 | |
| 68 | export function guardedExpression(guard: string, expr: o.Expression): o.Expression { |
| 69 | const guardExpr = new o.ExternalExpr({name: guard, moduleName: null}); |
no test coverage detected
searching dependent graphs…