Chromium Code Reviews

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: properly rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index 926b9866d4e019afb8fad2dd811f876e20044449..b445c49cdc856a55507ecd729a41de3a503d8476 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