(ce: ComputeEngine)
| 97 | expr !== undefined && |
| 98 | expr instanceof _BoxedExpression && |
| 99 | expr.type.matches('dictionary<any>') |
| 100 | ); |
| 101 | } |
| 102 | |
| 103 | export function isExpression(x: unknown): x is Expression { |
| 104 | return x instanceof _BoxedExpression; |
no outgoing calls
no test coverage detected