| 868 | } |
| 869 | |
| 870 | int32_t JavaScriptValueDelegate::valueToInt(const JSValueRef& value, ExceptionTracker& exceptionTracker) const { |
| 871 | return _jsContext->valueToInt(value.get(), toJSExceptionTracker(exceptionTracker)); |
| 872 | } |
| 873 | |
| 874 | int64_t JavaScriptValueDelegate::valueToLong(const JSValueRef& value, ExceptionTracker& exceptionTracker) const { |
| 875 | return _jsContext->valueToLong(value.get(), toJSExceptionTracker(exceptionTracker)).toInt64(); |
no test coverage detected