| 391 | } |
| 392 | |
| 393 | const StaticString* Value::getStaticString() const noexcept { |
| 394 | if (getType() == ValueType::StaticString) { |
| 395 | return toPointer<StaticString>(); |
| 396 | } |
| 397 | |
| 398 | return nullptr; |
| 399 | } |
| 400 | |
| 401 | Error Value::getError() const noexcept { |
| 402 | if (isError()) { |
no test coverage detected