* Parse this value into an `AstObject`, or error if it is not an object literal.
(this: ConformsTo<this, T, object>)
| 287 | * Parse this value into an `AstObject`, or error if it is not an object literal. |
| 288 | */ |
| 289 | getObject(this: ConformsTo<this, T, object>): AstObject<ObjectType<T>, TExpression> { |
| 290 | return AstObject.parse<ObjectType<T>, TExpression>(this.expression, this.host); |
| 291 | } |
| 292 | |
| 293 | /** |
| 294 | * Is this value an array literal? |
no test coverage detected