| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 V(Future, "Future") \ | 138 V(Future, "Future") \ |
| 139 V(FutureOr, "FutureOr") \ | 139 V(FutureOr, "FutureOr") \ |
| 140 V(FutureMicrotask, "Future.microtask") \ | 140 V(FutureMicrotask, "Future.microtask") \ |
| 141 V(FutureValue, "Future.value") \ | 141 V(FutureValue, "Future.value") \ |
| 142 V(FutureThen, "then") \ | 142 V(FutureThen, "then") \ |
| 143 V(FutureCatchError, "catchError") \ | 143 V(FutureCatchError, "catchError") \ |
| 144 V(Completer, "Completer") \ | 144 V(Completer, "Completer") \ |
| 145 V(CompleterComplete, "complete") \ | 145 V(CompleterComplete, "complete") \ |
| 146 V(CompleterCompleteError, "completeError") \ | 146 V(CompleterCompleteError, "completeError") \ |
| 147 V(CompleterSyncConstructor, "Completer.sync") \ | 147 V(CompleterSyncConstructor, "Completer.sync") \ |
| 148 V(_AsyncAwaitCompleter, "_AsyncAwaitCompleter") \ |
| 149 V(_AsyncAwaitCompleterConstructor, "_AsyncAwaitCompleter.") \ |
| 150 V(_AsyncAwaitStart, "start") \ |
| 148 V(CompleterFuture, "future") \ | 151 V(CompleterFuture, "future") \ |
| 149 V(StreamIterator, "StreamIterator") \ | 152 V(StreamIterator, "StreamIterator") \ |
| 150 V(StreamIteratorConstructor, "StreamIterator.") \ | 153 V(StreamIteratorConstructor, "StreamIterator.") \ |
| 151 V(Native, "native") \ | 154 V(Native, "native") \ |
| 152 V(Class, "Class") \ | 155 V(Class, "Class") \ |
| 153 V(Null, "Null") \ | 156 V(Null, "Null") \ |
| 154 V(null, "null") \ | 157 V(null, "null") \ |
| 155 V(Dynamic, "dynamic") \ | 158 V(Dynamic, "dynamic") \ |
| 156 V(UnresolvedClass, "UnresolvedClass") \ | 159 V(UnresolvedClass, "UnresolvedClass") \ |
| 157 V(Type, "_Type") \ | 160 V(Type, "_Type") \ |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 friend class Serializer; | 699 friend class Serializer; |
| 697 friend class Deserializer; | 700 friend class Deserializer; |
| 698 friend class ApiMessageReader; | 701 friend class ApiMessageReader; |
| 699 | 702 |
| 700 DISALLOW_COPY_AND_ASSIGN(Symbols); | 703 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 701 }; | 704 }; |
| 702 | 705 |
| 703 } // namespace dart | 706 } // namespace dart |
| 704 | 707 |
| 705 #endif // RUNTIME_VM_SYMBOLS_H_ | 708 #endif // RUNTIME_VM_SYMBOLS_H_ |
| OLD | NEW |