| 2708 | bool Value::isNumeric() const { return isIntegral() || isDouble(); } |
| 2709 | |
| 2710 | bool Value::isString() const { return type_ == stringValue; } |
| 2711 | |
| 2712 | bool Value::isArray() const { return type_ == arrayValue; } |
| 2713 |
no outgoing calls
no test coverage detected