| 524 | } |
| 525 | |
| 526 | JSValueRef V8JavaScriptContext::getObjectProperty(const JSValue& object, |
| 527 | const std::string_view& propertyName, |
| 528 | JSExceptionTracker& exceptionTracker) { |
| 529 | auto propertyKey = newPropertyName(propertyName); |
| 530 | return getObjectProperty(object, propertyKey.get(), exceptionTracker); |
| 531 | } |
| 532 | |
| 533 | JSValueRef V8JavaScriptContext::getObjectProperty(const JSValue& object, |
| 534 | const JSPropertyName& propertyName, |
no test coverage detected