* Returns the raw `TExpression` value of the property called `propertyName`. * * Throws an error if there is no such property.
(propertyName: PropertyKey<T>)
| 157 | * Throws an error if there is no such property. |
| 158 | */ |
| 159 | getNode(propertyName: PropertyKey<T>): TExpression { |
| 160 | return this.getRequiredProperty(propertyName); |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * Returns an `AstValue` that wraps the value of the property called `propertyName`. |
no test coverage detected