Commit 9c9f1870 authored by gsathya's avatar gsathya Committed by Commit bot

Fix SealHandleScope usage in runtime calls

R=adamk@chromium.org
BUG=v8:5783

Review-Url: https://codereview.chromium.org/2608433002
Cr-Commit-Position: refs/heads/master@{#41964}
parent 24547376
...@@ -281,7 +281,7 @@ RUNTIME_FUNCTION(Runtime_PromiseRejectReactions) { ...@@ -281,7 +281,7 @@ RUNTIME_FUNCTION(Runtime_PromiseRejectReactions) {
RUNTIME_FUNCTION(Runtime_PromiseMarkAsHandled) { RUNTIME_FUNCTION(Runtime_PromiseMarkAsHandled) {
SealHandleScope shs(isolate); SealHandleScope shs(isolate);
DCHECK(args.length() == 1); DCHECK(args.length() == 1);
CONVERT_ARG_HANDLE_CHECKED(JSPromise, promise, 0); CONVERT_ARG_CHECKED(JSPromise, promise, 0);
promise->set_has_handler(true); promise->set_has_handler(true);
return isolate->heap()->undefined_value(); return isolate->heap()->undefined_value();
...@@ -290,7 +290,7 @@ RUNTIME_FUNCTION(Runtime_PromiseMarkAsHandled) { ...@@ -290,7 +290,7 @@ RUNTIME_FUNCTION(Runtime_PromiseMarkAsHandled) {
RUNTIME_FUNCTION(Runtime_PromiseMarkHandledHint) { RUNTIME_FUNCTION(Runtime_PromiseMarkHandledHint) {
SealHandleScope shs(isolate); SealHandleScope shs(isolate);
DCHECK(args.length() == 1); DCHECK(args.length() == 1);
CONVERT_ARG_HANDLE_CHECKED(JSPromise, promise, 0); CONVERT_ARG_CHECKED(JSPromise, promise, 0);
promise->set_handled_hint(true); promise->set_handled_hint(true);
return isolate->heap()->undefined_value(); return isolate->heap()->undefined_value();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment