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

Unified Diff: runtime/vm/object_store.h

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/vm/kernel_to_il.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index a144e56f3ac8d3496d395dc5085152b687d5af9e..b8d457e24e4dccc13e21e7ffe9a0dd82de03cf79 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -452,6 +452,13 @@ class ObjectStore {
async_set_thread_stack_trace_ = func.raw();
ASSERT(async_set_thread_stack_trace_ != Object::null());
}
+ RawFunction* async_star_move_next_helper() const {
+ return async_star_move_next_helper_;
+ }
+ void set_async_star_move_next_helper(const Function& func) {
+ async_star_move_next_helper_ = func.raw();
+ ASSERT(async_star_move_next_helper_ != Object::null());
+ }
// Visit all object pointers.
void VisitObjectPointers(ObjectPointerVisitor* visitor);
@@ -556,6 +563,7 @@ class ObjectStore {
V(RawFunction*, simple_instance_of_false_function_) \
V(RawFunction*, async_clear_thread_stack_trace_) \
V(RawFunction*, async_set_thread_stack_trace_) \
+ V(RawFunction*, async_star_move_next_helper_) \
V(RawArray*, library_load_error_table_) \
V(RawArray*, unique_dynamic_targets_) \
V(RawGrowableObjectArray*, token_objects_) \
« no previous file with comments | « runtime/vm/kernel_to_il.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698