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

Unified Diff: runtime/lib/stacktrace.cc

Issue 2768103002: Debugger support for step-into async and async* functions. (Closed)
Patch Set: asiva review 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 | « runtime/lib/async_sources.gypi ('k') | runtime/observatory/tests/service/async_single_step_into_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/stacktrace.cc
diff --git a/runtime/lib/stacktrace.cc b/runtime/lib/stacktrace.cc
index 7f9c146b5d68f9ab9eba8d6c30e74a74b862b2ef..2d6267a3b2e60efdb0186b3354f8f9fa9f5ff076 100644
--- a/runtime/lib/stacktrace.cc
+++ b/runtime/lib/stacktrace.cc
@@ -110,7 +110,14 @@ DEFINE_NATIVE_ENTRY(StackTrace_current, 0) {
}
-DEFINE_NATIVE_ENTRY(StackTrace_asyncStackTraceHelper, 0) {
+DEFINE_NATIVE_ENTRY(StackTrace_asyncStackTraceHelper, 1) {
+ GET_NON_NULL_NATIVE_ARGUMENT(Closure, async_op, arguments->NativeArgAt(0));
+ if (FLAG_support_debugger) {
+ Debugger* debugger = isolate->debugger();
+ if (debugger != NULL) {
+ debugger->MaybeAsyncStepInto(async_op);
+ }
+ }
return CurrentStackTrace(thread, true);
}
« no previous file with comments | « runtime/lib/async_sources.gypi ('k') | runtime/observatory/tests/service/async_single_step_into_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698