| 139 | |
| 140 | JSValueRef IJavaScriptContext::callObjectProperty(const JSValue& object, |
| 141 | const std::string_view& propertyName, |
| 142 | JSFunctionCallContext& callContext) { |
| 143 | auto jsPropertyName = newPropertyName(propertyName); |
| 144 | return callObjectProperty(object, jsPropertyName.get(), callContext); |
| 145 | } |
| 146 | |
| 147 | JSValueRef IJavaScriptContext::getObjectProperty(const JSValue& object, |
| 148 | const std::string_view& propertyName, |
| 149 | JSExceptionTracker& exceptionTracker) { |
no test coverage detected