| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 V(Async, "async") \ | 78 V(Async, "async") \ |
| 79 V(AsyncCompleter, ":async_completer") \ | 79 V(AsyncCompleter, ":async_completer") \ |
| 80 V(AsyncOperation, ":async_op") \ | 80 V(AsyncOperation, ":async_op") \ |
| 81 V(AsyncOperationParam, ":async_result") \ | 81 V(AsyncOperationParam, ":async_result") \ |
| 82 V(AsyncOperationErrorParam, ":async_error_param") \ | 82 V(AsyncOperationErrorParam, ":async_error_param") \ |
| 83 V(AsyncCatchHelper, "_asyncCatchHelper") \ | 83 V(AsyncCatchHelper, "_asyncCatchHelper") \ |
| 84 V(Await, "await") \ | 84 V(Await, "await") \ |
| 85 V(AwaitContextVar, ":await_ctx_var") \ | 85 V(AwaitContextVar, ":await_ctx_var") \ |
| 86 V(AwaitJumpVar, ":await_jump_var") \ | 86 V(AwaitJumpVar, ":await_jump_var") \ |
| 87 V(Future, "Future") \ | 87 V(Future, "Future") \ |
| 88 V(FutureConstructor, "Future.") \ | 88 V(FutureMicrotask, "Future.microtask") \ |
| 89 V(FutureValue, "Future.value") \ | 89 V(FutureValue, "Future.value") \ |
| 90 V(FutureThen, "then") \ | 90 V(FutureThen, "then") \ |
| 91 V(FutureCatchError, "catchError") \ | 91 V(FutureCatchError, "catchError") \ |
| 92 V(Completer, "Completer") \ | 92 V(Completer, "Completer") \ |
| 93 V(CompleterComplete, "complete") \ | 93 V(CompleterComplete, "complete") \ |
| 94 V(CompleterCompleteError, "completeError") \ | 94 V(CompleterCompleteError, "completeError") \ |
| 95 V(CompleterConstructor, "Completer.") \ | 95 V(CompleterConstructor, "Completer.") \ |
| 96 V(CompleterFuture, "future") \ | 96 V(CompleterFuture, "future") \ |
| 97 V(StreamIterator, "StreamIterator") \ | 97 V(StreamIterator, "StreamIterator") \ |
| 98 V(StreamIteratorConstructor, "StreamIterator.") \ | 98 V(StreamIteratorConstructor, "StreamIterator.") \ |
| (...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 friend class SnapshotReader; | 558 friend class SnapshotReader; |
| 559 friend class SnapshotWriter; | 559 friend class SnapshotWriter; |
| 560 friend class ApiMessageReader; | 560 friend class ApiMessageReader; |
| 561 | 561 |
| 562 DISALLOW_COPY_AND_ASSIGN(Symbols); | 562 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 563 }; | 563 }; |
| 564 | 564 |
| 565 } // namespace dart | 565 } // namespace dart |
| 566 | 566 |
| 567 #endif // VM_SYMBOLS_H_ | 567 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |