Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(434)

Unified Diff: src/isolate.cc

Issue 1895603002: [esnext] prototype runtime implementation for async functions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@AsyncFunction
Patch Set: And rebased after cleaning those things up Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index b236d46a68ac4d85120ec1e1d676d33596758e05..3fa671ac824f2637dff3cfe1a97b85b0a953fdcd 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -336,6 +336,7 @@ static bool IsVisibleInStackTrace(JSFunction* fun,
if (!FLAG_builtins_in_stack_traces && fun->shared()->IsBuiltin()) {
return fun->shared()->native();
}
+
return true;
}

Powered by Google App Engine
This is Rietveld 408576698