| 773 | } |
| 774 | |
| 775 | bool Value::isString() const noexcept { |
| 776 | return isInternedString() || isStaticString(); |
| 777 | } |
| 778 | |
| 779 | bool Value::isInternedString() const noexcept { |
| 780 | return _type == ValueType::InternedString; |
no outgoing calls
no test coverage detected