* Parse the string from this value, or error if it is not a string.
(this: ConformsTo<this, T, string>)
| 259 | * Parse the string from this value, or error if it is not a string. |
| 260 | */ |
| 261 | getString(this: ConformsTo<this, T, string>): string { |
| 262 | return this.host.parseStringLiteral(this.expression); |
| 263 | } |
| 264 | |
| 265 | /** |
| 266 | * Is this value a boolean? |
no test coverage detected