| Index: src/isolate.h
|
| diff --git a/src/isolate.h b/src/isolate.h
|
| index d4b97b3cb36334eceff242bc509f8fd0b417e404..c51045109bfa5b72d3f2403df6bca45490f337a9 100644
|
| --- a/src/isolate.h
|
| +++ b/src/isolate.h
|
| @@ -117,16 +117,6 @@ class Interpreter;
|
| #define RETURN_EXCEPTION_IF_SCHEDULED_EXCEPTION(isolate, T) \
|
| RETURN_VALUE_IF_SCHEDULED_EXCEPTION(isolate, MaybeHandle<T>())
|
|
|
| -#define RETURN_RESULT(isolate, call, T) \
|
| - do { \
|
| - Handle<T> __result__; \
|
| - if (!(call).ToHandle(&__result__)) { \
|
| - DCHECK((isolate)->has_pending_exception()); \
|
| - return MaybeHandle<T>(); \
|
| - } \
|
| - return __result__; \
|
| - } while (false)
|
| -
|
| #define RETURN_RESULT_OR_FAILURE(isolate, call) \
|
| do { \
|
| Handle<Object> __result__; \
|
|
|