| 3877 | bool Value::isDouble() const { return type_ == intValue || type_ == uintValue || type_ == realValue; } |
| 3878 | |
| 3879 | bool Value::isNumeric() const { return isDouble(); } |
| 3880 | |
| 3881 | bool Value::isString() const { return type_ == stringValue; } |
| 3882 |
nothing calls this directly
no outgoing calls
no test coverage detected