| 702 | } |
| 703 | |
| 704 | JSValueRef JavaScriptValueDelegate::getArrayItem(const PlatformArrayIterator<JSValueRef>& arrayIterator, |
| 705 | size_t index, |
| 706 | ExceptionTracker& exceptionTracker) { |
| 707 | return _jsContext->getObjectPropertyForIndex( |
| 708 | arrayIterator.getIterator().get(), index, toJSExceptionTracker(exceptionTracker)); |
| 709 | } |
| 710 | |
| 711 | class JSBridgedPromiseCallback final : public PromiseCallback { |
| 712 | public: |
nothing calls this directly
no test coverage detected