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 VM_SYMBOLS_H_ | 5 #ifndef VM_SYMBOLS_H_ |
6 #define VM_SYMBOLS_H_ | 6 #define VM_SYMBOLS_H_ |
7 | 7 |
8 #include "vm/object.h" | 8 #include "vm/object.h" |
9 #include "vm/snapshot_ids.h" | 9 #include "vm/snapshot_ids.h" |
10 | 10 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 V(LoadLibrary, "loadLibrary") \ | 87 V(LoadLibrary, "loadLibrary") \ |
88 V(_LibraryPrefix, "_LibraryPrefix") \ | 88 V(_LibraryPrefix, "_LibraryPrefix") \ |
89 V(Async, "async") \ | 89 V(Async, "async") \ |
90 V(Sync, "sync") \ | 90 V(Sync, "sync") \ |
91 V(YieldKw, "yield") \ | 91 V(YieldKw, "yield") \ |
92 V(AsyncCompleter, ":async_completer") \ | 92 V(AsyncCompleter, ":async_completer") \ |
93 V(AsyncOperation, ":async_op") \ | 93 V(AsyncOperation, ":async_op") \ |
94 V(AsyncOperationParam, ":async_result") \ | 94 V(AsyncOperationParam, ":async_result") \ |
95 V(AsyncOperationErrorParam, ":async_error_param") \ | 95 V(AsyncOperationErrorParam, ":async_error_param") \ |
96 V(AsyncOperationStackTraceParam, ":async_stack_trace_param") \ | 96 V(AsyncOperationStackTraceParam, ":async_stack_trace_param") \ |
| 97 V(AsyncSavedTryCtxVarPrefix, ":async_saved_try_ctx_var_") \ |
97 V(AsyncCatchHelper, "_asyncCatchHelper") \ | 98 V(AsyncCatchHelper, "_asyncCatchHelper") \ |
98 V(Await, "await") \ | 99 V(Await, "await") \ |
99 V(AwaitContextVar, ":await_ctx_var") \ | 100 V(AwaitContextVar, ":await_ctx_var") \ |
100 V(AwaitJumpVar, ":await_jump_var") \ | 101 V(AwaitJumpVar, ":await_jump_var") \ |
101 V(Future, "Future") \ | 102 V(Future, "Future") \ |
102 V(FutureMicrotask, "Future.microtask") \ | 103 V(FutureMicrotask, "Future.microtask") \ |
103 V(FutureValue, "Future.value") \ | 104 V(FutureValue, "Future.value") \ |
104 V(FutureThen, "then") \ | 105 V(FutureThen, "then") \ |
105 V(FutureCatchError, "catchError") \ | 106 V(FutureCatchError, "catchError") \ |
106 V(Completer, "Completer") \ | 107 V(Completer, "Completer") \ |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
583 friend class SnapshotReader; | 584 friend class SnapshotReader; |
584 friend class SnapshotWriter; | 585 friend class SnapshotWriter; |
585 friend class ApiMessageReader; | 586 friend class ApiMessageReader; |
586 | 587 |
587 DISALLOW_COPY_AND_ASSIGN(Symbols); | 588 DISALLOW_COPY_AND_ASSIGN(Symbols); |
588 }; | 589 }; |
589 | 590 |
590 } // namespace dart | 591 } // namespace dart |
591 | 592 |
592 #endif // VM_SYMBOLS_H_ | 593 #endif // VM_SYMBOLS_H_ |
OLD | NEW |