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

Side by Side Diff: runtime/vm/symbols.h

Issue 2768103002: Debugger support for step-into async and async* functions. (Closed)
Patch Set: tweaks and self 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 unified diff | Download patch
« runtime/vm/parser.cc ('K') | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef RUNTIME_VM_SYMBOLS_H_ 5 #ifndef RUNTIME_VM_SYMBOLS_H_
6 #define RUNTIME_VM_SYMBOLS_H_ 6 #define RUNTIME_VM_SYMBOLS_H_
7 7
8 #include "vm/growable_array.h" 8 #include "vm/growable_array.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 #include "vm/snapshot_ids.h" 10 #include "vm/snapshot_ids.h"
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 V(AsyncOperationParam, ":async_result") \ 119 V(AsyncOperationParam, ":async_result") \
120 V(AsyncOperationErrorParam, ":async_error_param") \ 120 V(AsyncOperationErrorParam, ":async_error_param") \
121 V(AsyncOperationStackTraceParam, ":async_stack_trace_param") \ 121 V(AsyncOperationStackTraceParam, ":async_stack_trace_param") \
122 V(AsyncSavedTryCtxVarPrefix, ":async_saved_try_ctx_var_") \ 122 V(AsyncSavedTryCtxVarPrefix, ":async_saved_try_ctx_var_") \
123 V(AsyncStackTraceVar, ":async_stack_trace") \ 123 V(AsyncStackTraceVar, ":async_stack_trace") \
124 V(ClearAsyncThreadStackTrace, "_clearAsyncThreadStackTrace") \ 124 V(ClearAsyncThreadStackTrace, "_clearAsyncThreadStackTrace") \
125 V(SetAsyncThreadStackTrace, "_setAsyncThreadStackTrace") \ 125 V(SetAsyncThreadStackTrace, "_setAsyncThreadStackTrace") \
126 V(AsyncCatchHelper, "_asyncCatchHelper") \ 126 V(AsyncCatchHelper, "_asyncCatchHelper") \
127 V(AsyncThenWrapperHelper, "_asyncThenWrapperHelper") \ 127 V(AsyncThenWrapperHelper, "_asyncThenWrapperHelper") \
128 V(AsyncErrorWrapperHelper, "_asyncErrorWrapperHelper") \ 128 V(AsyncErrorWrapperHelper, "_asyncErrorWrapperHelper") \
129 V(AsyncStarMoveNextHelper, "_asyncStarMoveNextHelper") \
129 V(AsyncStackTraceHelper, "_asyncStackTraceHelper") \ 130 V(AsyncStackTraceHelper, "_asyncStackTraceHelper") \
130 V(AsyncAwaitHelper, "_awaitHelper") \ 131 V(AsyncAwaitHelper, "_awaitHelper") \
131 V(Await, "await") \ 132 V(Await, "await") \
132 V(_Awaiter, "_awaiter") \ 133 V(_Awaiter, "_awaiter") \
133 V(AwaitTempVarPrefix, ":await_temp_var_") \ 134 V(AwaitTempVarPrefix, ":await_temp_var_") \
134 V(AwaitContextVar, ":await_ctx_var") \ 135 V(AwaitContextVar, ":await_ctx_var") \
135 V(AwaitJumpVar, ":await_jump_var") \ 136 V(AwaitJumpVar, ":await_jump_var") \
136 V(Future, "Future") \ 137 V(Future, "Future") \
137 V(FutureOr, "FutureOr") \ 138 V(FutureOr, "FutureOr") \
138 V(FutureMicrotask, "Future.microtask") \ 139 V(FutureMicrotask, "Future.microtask") \
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 friend class Serializer; 689 friend class Serializer;
689 friend class Deserializer; 690 friend class Deserializer;
690 friend class ApiMessageReader; 691 friend class ApiMessageReader;
691 692
692 DISALLOW_COPY_AND_ASSIGN(Symbols); 693 DISALLOW_COPY_AND_ASSIGN(Symbols);
693 }; 694 };
694 695
695 } // namespace dart 696 } // namespace dart
696 697
697 #endif // RUNTIME_VM_SYMBOLS_H_ 698 #endif // RUNTIME_VM_SYMBOLS_H_
OLDNEW
« runtime/vm/parser.cc ('K') | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698