| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 V(Completer, "Completer") \ | 134 V(Completer, "Completer") \ |
| 135 V(CompleterComplete, "complete") \ | 135 V(CompleterComplete, "complete") \ |
| 136 V(CompleterCompleteError, "completeError") \ | 136 V(CompleterCompleteError, "completeError") \ |
| 137 V(CompleterSyncConstructor, "Completer.sync") \ | 137 V(CompleterSyncConstructor, "Completer.sync") \ |
| 138 V(CompleterFuture, "future") \ | 138 V(CompleterFuture, "future") \ |
| 139 V(StreamIterator, "StreamIterator") \ | 139 V(StreamIterator, "StreamIterator") \ |
| 140 V(StreamIteratorConstructor, "StreamIterator.") \ | 140 V(StreamIteratorConstructor, "StreamIterator.") \ |
| 141 V(Native, "native") \ | 141 V(Native, "native") \ |
| 142 V(Class, "Class") \ | 142 V(Class, "Class") \ |
| 143 V(Null, "Null") \ | 143 V(Null, "Null") \ |
| 144 V(null, "null") \ |
| 144 V(Dynamic, "dynamic") \ | 145 V(Dynamic, "dynamic") \ |
| 145 V(UnresolvedClass, "UnresolvedClass") \ | 146 V(UnresolvedClass, "UnresolvedClass") \ |
| 146 V(Type, "_Type") \ | 147 V(Type, "_Type") \ |
| 147 V(TypeRef, "_TypeRef") \ | 148 V(TypeRef, "_TypeRef") \ |
| 148 V(TypeParameter, "_TypeParameter") \ | 149 V(TypeParameter, "_TypeParameter") \ |
| 149 V(BoundedType, "_BoundedType") \ | 150 V(BoundedType, "_BoundedType") \ |
| 150 V(MixinAppType, "_MixinAppType") \ | 151 V(MixinAppType, "_MixinAppType") \ |
| 151 V(TypeArguments, "TypeArguments") \ | 152 V(TypeArguments, "TypeArguments") \ |
| 152 V(Patch, "patch") \ | 153 V(Patch, "patch") \ |
| 153 V(PatchClass, "PatchClass") \ | 154 V(PatchClass, "PatchClass") \ |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 friend class Serializer; | 683 friend class Serializer; |
| 683 friend class Deserializer; | 684 friend class Deserializer; |
| 684 friend class ApiMessageReader; | 685 friend class ApiMessageReader; |
| 685 | 686 |
| 686 DISALLOW_COPY_AND_ASSIGN(Symbols); | 687 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 687 }; | 688 }; |
| 688 | 689 |
| 689 } // namespace dart | 690 } // namespace dart |
| 690 | 691 |
| 691 #endif // RUNTIME_VM_SYMBOLS_H_ | 692 #endif // RUNTIME_VM_SYMBOLS_H_ |
| OLD | NEW |