| 272 | |
| 273 | bool Value::is_bool() const noexcept { |
| 274 | return kind_ == Kind::Bool; |
| 275 | } |
| 276 | |
| 277 | bool Value::is_number() const noexcept { |
| 278 | return kind_ == Kind::Number; |
| 279 | } |
| 280 | |
| 281 | bool Value::is_string() const noexcept { |
| 282 | return kind_ == Kind::String; |
| 283 | } |