* Parse the boolean from this value, or error if it is not a boolean.
(this: ConformsTo<this, T, boolean>)
| 273 | * Parse the boolean from this value, or error if it is not a boolean. |
| 274 | */ |
| 275 | getBoolean(this: ConformsTo<this, T, boolean>): boolean { |
| 276 | return this.host.parseBooleanLiteral(this.expression); |
| 277 | } |
| 278 | |
| 279 | /** |
| 280 | * Is this value an object literal? |
no test coverage detected