| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 V(Sync, "sync") \ | 111 V(Sync, "sync") \ |
| 112 V(YieldKw, "yield") \ | 112 V(YieldKw, "yield") \ |
| 113 V(AsyncCompleter, ":async_completer") \ | 113 V(AsyncCompleter, ":async_completer") \ |
| 114 V(AsyncOperation, ":async_op") \ | 114 V(AsyncOperation, ":async_op") \ |
| 115 V(AsyncThenCallback, ":async_op_then") \ | 115 V(AsyncThenCallback, ":async_op_then") \ |
| 116 V(AsyncCatchErrorCallback, ":async_op_catch_error") \ | 116 V(AsyncCatchErrorCallback, ":async_op_catch_error") \ |
| 117 V(AsyncOperationParam, ":async_result") \ | 117 V(AsyncOperationParam, ":async_result") \ |
| 118 V(AsyncOperationErrorParam, ":async_error_param") \ | 118 V(AsyncOperationErrorParam, ":async_error_param") \ |
| 119 V(AsyncOperationStackTraceParam, ":async_stack_trace_param") \ | 119 V(AsyncOperationStackTraceParam, ":async_stack_trace_param") \ |
| 120 V(AsyncSavedTryCtxVarPrefix, ":async_saved_try_ctx_var_") \ | 120 V(AsyncSavedTryCtxVarPrefix, ":async_saved_try_ctx_var_") \ |
| 121 V(AsyncStackTraceVar, ":async_stack_trace") \ |
| 122 V(ClearAsyncThreadStackTrace, "_clearAsyncThreadStackTrace") \ |
| 123 V(SetAsyncThreadStackTrace, "_setAsyncThreadStackTrace") \ |
| 121 V(AsyncCatchHelper, "_asyncCatchHelper") \ | 124 V(AsyncCatchHelper, "_asyncCatchHelper") \ |
| 122 V(AsyncThenWrapperHelper, "_asyncThenWrapperHelper") \ | 125 V(AsyncThenWrapperHelper, "_asyncThenWrapperHelper") \ |
| 123 V(AsyncErrorWrapperHelper, "_asyncErrorWrapperHelper") \ | 126 V(AsyncErrorWrapperHelper, "_asyncErrorWrapperHelper") \ |
| 127 V(AsyncStackTraceHelper, "_asyncStackTraceHelper") \ |
| 124 V(AsyncAwaitHelper, "_awaitHelper") \ | 128 V(AsyncAwaitHelper, "_awaitHelper") \ |
| 125 V(Await, "await") \ | 129 V(Await, "await") \ |
| 126 V(AwaitTempVarPrefix, ":await_temp_var_") \ | 130 V(AwaitTempVarPrefix, ":await_temp_var_") \ |
| 127 V(AwaitContextVar, ":await_ctx_var") \ | 131 V(AwaitContextVar, ":await_ctx_var") \ |
| 128 V(AwaitJumpVar, ":await_jump_var") \ | 132 V(AwaitJumpVar, ":await_jump_var") \ |
| 129 V(Future, "Future") \ | 133 V(Future, "Future") \ |
| 130 V(FutureOr, "FutureOr") \ | 134 V(FutureOr, "FutureOr") \ |
| 131 V(FutureMicrotask, "Future.microtask") \ | 135 V(FutureMicrotask, "Future.microtask") \ |
| 132 V(FutureValue, "Future.value") \ | 136 V(FutureValue, "Future.value") \ |
| 133 V(FutureThen, "then") \ | 137 V(FutureThen, "then") \ |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 friend class Serializer; | 688 friend class Serializer; |
| 685 friend class Deserializer; | 689 friend class Deserializer; |
| 686 friend class ApiMessageReader; | 690 friend class ApiMessageReader; |
| 687 | 691 |
| 688 DISALLOW_COPY_AND_ASSIGN(Symbols); | 692 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 689 }; | 693 }; |
| 690 | 694 |
| 691 } // namespace dart | 695 } // namespace dart |
| 692 | 696 |
| 693 #endif // RUNTIME_VM_SYMBOLS_H_ | 697 #endif // RUNTIME_VM_SYMBOLS_H_ |
| OLD | NEW |