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