Version 1.23.0-dev.11.3

Revert cherry-pick of 61e11c6808e3fd87c574f4277b3d9ff745dc85f0 into dev
diff --git a/runtime/vm/debugger.cc b/runtime/vm/debugger.cc
index eaef08ec..63760c0 100644
--- a/runtime/vm/debugger.cc
+++ b/runtime/vm/debugger.cc
@@ -1972,7 +1972,7 @@
 
 
 DebuggerStackTrace* Debugger::CollectAwaiterReturnStackTrace() {
-  if (!FLAG_async_debugger_stepping) {
+  if (!FLAG_causal_async_stacks) {
     return NULL;
   }
   // Causal async stacks are not supported in the AOT runtime.
diff --git a/runtime/vm/flag_list.h b/runtime/vm/flag_list.h
index f086e69..e8fcc0c 100644
--- a/runtime/vm/flag_list.h
+++ b/runtime/vm/flag_list.h
@@ -149,7 +149,7 @@
   C(causal_async_stacks, false, false, bool, true, "Improved async stacks")    \
   C(stress_async_stacks, false, false, bool, false,                            \
     "Stress test async stack traces")                                          \
-  C(async_debugger_stepping, false, false, bool, false,                        \
+  C(async_debugger_stepping, false, false, bool, true,                         \
     "Debugger support for stepping in and out of async functions.")            \
   R(support_ast_printer, false, bool, true, "Support the AST printer.")        \
   R(support_compiler_stats, false, bool, true, "Support compiler stats.")      \
diff --git a/tools/VERSION b/tools/VERSION
index 0a7fa01..d829f83 100644
--- a/tools/VERSION
+++ b/tools/VERSION
@@ -28,4 +28,4 @@
 MINOR 23
 PATCH 0
 PRERELEASE 11
-PRERELEASE_PATCH 2
+PRERELEASE_PATCH 3