| 132 | JSFunctionCallContext& callContext) { |
| 133 | auto func = getObjectProperty(object, propertyName, callContext.getExceptionTracker()); |
| 134 | CHECK_CALL_CONTEXT(callContext); |
| 135 | |
| 136 | callContext.setThisValue(object); |
| 137 | return callObjectAsFunction(func.get(), callContext); |
| 138 | } |
| 139 | |
| 140 | JSValueRef IJavaScriptContext::callObjectProperty(const JSValue& object, |
| 141 | const std::string_view& propertyName, |
| 142 | JSFunctionCallContext& callContext) { |
no test coverage detected