OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |