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

Unified Diff: runtime/vm/debugger.cc

Issue 2787023002: Disable awaiter stepping by default until context level computation is fixed (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | runtime/vm/flag_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/debugger.cc
diff --git a/runtime/vm/debugger.cc b/runtime/vm/debugger.cc
index 4dbf87e8c46038f1cb5e3dcb01f34b745b4ce20e..6fad028de7a14dedcac1771ddcaa4b2cdda7b5df 100644
--- a/runtime/vm/debugger.cc
+++ b/runtime/vm/debugger.cc
@@ -1955,7 +1955,7 @@ DebuggerStackTrace* Debugger::CollectAsyncCausalStackTrace() {
DebuggerStackTrace* Debugger::CollectAwaiterReturnStackTrace() {
- if (!FLAG_causal_async_stacks) {
+ if (!FLAG_async_debugger_stepping) {
return NULL;
}
// Causal async stacks are not supported in the AOT runtime.
« no previous file with comments | « no previous file | runtime/vm/flag_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698