* Is this value an array literal?
()
| 294 | * Is this value an array literal? |
| 295 | */ |
| 296 | isArray(): boolean { |
| 297 | return this.host.isArrayLiteral(this.expression); |
| 298 | } |
| 299 | |
| 300 | /** Whether the value is explicitly set to `null`. */ |
| 301 | isNull(): boolean { |
no test coverage detected