| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 V(AwaitContextVar, ":await_ctx_var") \ | 112 V(AwaitContextVar, ":await_ctx_var") \ |
| 113 V(AwaitJumpVar, ":await_jump_var") \ | 113 V(AwaitJumpVar, ":await_jump_var") \ |
| 114 V(Future, "Future") \ | 114 V(Future, "Future") \ |
| 115 V(FutureMicrotask, "Future.microtask") \ | 115 V(FutureMicrotask, "Future.microtask") \ |
| 116 V(FutureValue, "Future.value") \ | 116 V(FutureValue, "Future.value") \ |
| 117 V(FutureThen, "then") \ | 117 V(FutureThen, "then") \ |
| 118 V(FutureCatchError, "catchError") \ | 118 V(FutureCatchError, "catchError") \ |
| 119 V(Completer, "Completer") \ | 119 V(Completer, "Completer") \ |
| 120 V(CompleterComplete, "complete") \ | 120 V(CompleterComplete, "complete") \ |
| 121 V(CompleterCompleteError, "completeError") \ | 121 V(CompleterCompleteError, "completeError") \ |
| 122 V(CompleterConstructor, "Completer.") \ | 122 V(CompleterSyncConstructor, "Completer.sync") \ |
| 123 V(CompleterFuture, "future") \ | 123 V(CompleterFuture, "future") \ |
| 124 V(StreamIterator, "StreamIterator") \ | 124 V(StreamIterator, "StreamIterator") \ |
| 125 V(StreamIteratorConstructor, "StreamIterator.") \ | 125 V(StreamIteratorConstructor, "StreamIterator.") \ |
| 126 V(Native, "native") \ | 126 V(Native, "native") \ |
| 127 V(Class, "Class") \ | 127 V(Class, "Class") \ |
| 128 V(Null, "Null") \ | 128 V(Null, "Null") \ |
| 129 V(Dynamic, "dynamic") \ | 129 V(Dynamic, "dynamic") \ |
| 130 V(UnresolvedClass, "UnresolvedClass") \ | 130 V(UnresolvedClass, "UnresolvedClass") \ |
| 131 V(Type, "_Type") \ | 131 V(Type, "_Type") \ |
| 132 V(TypeRef, "_TypeRef") \ | 132 V(TypeRef, "_TypeRef") \ |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 friend class SnapshotReader; | 632 friend class SnapshotReader; |
| 633 friend class SnapshotWriter; | 633 friend class SnapshotWriter; |
| 634 friend class ApiMessageReader; | 634 friend class ApiMessageReader; |
| 635 | 635 |
| 636 DISALLOW_COPY_AND_ASSIGN(Symbols); | 636 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 637 }; | 637 }; |
| 638 | 638 |
| 639 } // namespace dart | 639 } // namespace dart |
| 640 | 640 |
| 641 #endif // VM_SYMBOLS_H_ | 641 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |