| 3771 | bool Value::isNull() const { return type_ == nullValue; } |
| 3772 | |
| 3773 | bool Value::isBool() const { return type_ == booleanValue; } |
| 3774 | |
| 3775 | bool Value::isInt() const { |
| 3776 | switch (type_) { |
nothing calls this directly
no outgoing calls
no test coverage detected