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

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

Issue 2774233003: Cleanups needed for async step-out (Closed)
Patch Set: Created 3 years, 8 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/lib/async_patch.dart ('K') | « runtime/vm/object_store.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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 V(AsyncThenCallback, ":async_op_then") \ 117 V(AsyncThenCallback, ":async_op_then") \
118 V(AsyncCatchErrorCallback, ":async_op_catch_error") \ 118 V(AsyncCatchErrorCallback, ":async_op_catch_error") \
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(_CompleteOnAsyncReturn, "_completeOnAsyncReturn") \
127 V(AsyncThenWrapperHelper, "_asyncThenWrapperHelper") \ 128 V(AsyncThenWrapperHelper, "_asyncThenWrapperHelper") \
128 V(AsyncErrorWrapperHelper, "_asyncErrorWrapperHelper") \ 129 V(AsyncErrorWrapperHelper, "_asyncErrorWrapperHelper") \
129 V(AsyncStarMoveNextHelper, "_asyncStarMoveNextHelper") \ 130 V(AsyncStarMoveNextHelper, "_asyncStarMoveNextHelper") \
130 V(AsyncStackTraceHelper, "_asyncStackTraceHelper") \ 131 V(AsyncStackTraceHelper, "_asyncStackTraceHelper") \
131 V(AsyncAwaitHelper, "_awaitHelper") \ 132 V(AsyncAwaitHelper, "_awaitHelper") \
132 V(Await, "await") \ 133 V(Await, "await") \
133 V(_Awaiter, "_awaiter") \ 134 V(_Awaiter, "_awaiter") \
134 V(AwaitTempVarPrefix, ":await_temp_var_") \ 135 V(AwaitTempVarPrefix, ":await_temp_var_") \
135 V(AwaitContextVar, ":await_ctx_var") \ 136 V(AwaitContextVar, ":await_ctx_var") \
136 V(AwaitJumpVar, ":await_jump_var") \ 137 V(AwaitJumpVar, ":await_jump_var") \
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 friend class Serializer; 690 friend class Serializer;
690 friend class Deserializer; 691 friend class Deserializer;
691 friend class ApiMessageReader; 692 friend class ApiMessageReader;
692 693
693 DISALLOW_COPY_AND_ASSIGN(Symbols); 694 DISALLOW_COPY_AND_ASSIGN(Symbols);
694 }; 695 };
695 696
696 } // namespace dart 697 } // namespace dart
697 698
698 #endif // RUNTIME_VM_SYMBOLS_H_ 699 #endif // RUNTIME_VM_SYMBOLS_H_
OLDNEW
« runtime/lib/async_patch.dart ('K') | « runtime/vm/object_store.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698