| 3817 | bool Value::isDouble() const { return type_ == intValue || type_ == uintValue || type_ == realValue; } |
| 3818 | |
| 3819 | bool Value::isNumeric() const { return isDouble(); } |
| 3820 | |
| 3821 | bool Value::isString() const { return type_ == stringValue; } |
| 3822 |
no outgoing calls
no test coverage detected