| 860 | } |
| 861 | |
| 862 | bool JavaScriptValueDelegate::valueIsNull(const JSValueRef& value) const { |
| 863 | return _jsContext->isValueNull(value.get()) || _jsContext->isValueUndefined(value.get()); |
| 864 | } |
| 865 | |
| 866 | int32_t JavaScriptValueDelegate::valueToInt(const JSValueRef& value, ExceptionTracker& exceptionTracker) const { |
| 867 | return _jsContext->valueToInt(value.get(), toJSExceptionTracker(exceptionTracker)); |
nothing calls this directly
no test coverage detected