| 2588 | |
| 2589 | bool JavaScriptRuntime::callComponentFunction(ContextId contextId, |
| 2590 | const StringBox& functionName, |
| 2591 | const Ref<ValueArray>& additionalParameters) { |
| 2592 | auto context = _contextManager.getContext(contextId); |
| 2593 | if (context == nullptr) { |
| 2594 | return false; |
| 2595 | } |
| 2596 | |
| 2597 | callComponentFunction(context, functionName, additionalParameters); |
| 2598 | |
| 2599 | return true; |
| 2600 | } |
| 2601 |
no test coverage detected