| 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/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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 V(CompleterSyncConstructor, "Completer.sync") \ | 130 V(CompleterSyncConstructor, "Completer.sync") \ |
| 131 V(CompleterFuture, "future") \ | 131 V(CompleterFuture, "future") \ |
| 132 V(StreamIterator, "StreamIterator") \ | 132 V(StreamIterator, "StreamIterator") \ |
| 133 V(StreamIteratorConstructor, "StreamIterator.") \ | 133 V(StreamIteratorConstructor, "StreamIterator.") \ |
| 134 V(Native, "native") \ | 134 V(Native, "native") \ |
| 135 V(Class, "Class") \ | 135 V(Class, "Class") \ |
| 136 V(Null, "Null") \ | 136 V(Null, "Null") \ |
| 137 V(Dynamic, "dynamic") \ | 137 V(Dynamic, "dynamic") \ |
| 138 V(UnresolvedClass, "UnresolvedClass") \ | 138 V(UnresolvedClass, "UnresolvedClass") \ |
| 139 V(Type, "_Type") \ | 139 V(Type, "_Type") \ |
| 140 V(FunctionType, "_FunctionType") \ | |
| 141 V(TypeRef, "_TypeRef") \ | 140 V(TypeRef, "_TypeRef") \ |
| 142 V(TypeParameter, "_TypeParameter") \ | 141 V(TypeParameter, "_TypeParameter") \ |
| 143 V(BoundedType, "_BoundedType") \ | 142 V(BoundedType, "_BoundedType") \ |
| 144 V(MixinAppType, "_MixinAppType") \ | 143 V(MixinAppType, "_MixinAppType") \ |
| 145 V(TypeArguments, "TypeArguments") \ | 144 V(TypeArguments, "TypeArguments") \ |
| 146 V(Patch, "patch") \ | 145 V(Patch, "patch") \ |
| 147 V(PatchClass, "PatchClass") \ | 146 V(PatchClass, "PatchClass") \ |
| 148 V(Function, "Function") \ | 147 V(Function, "Function") \ |
| 149 V(_Closure, "_Closure") \ | 148 V(_Closure, "_Closure") \ |
| 150 V(FunctionResult, "function result") \ | 149 V(FunctionResult, "function result") \ |
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 friend class SnapshotReader; | 651 friend class SnapshotReader; |
| 653 friend class SnapshotWriter; | 652 friend class SnapshotWriter; |
| 654 friend class ApiMessageReader; | 653 friend class ApiMessageReader; |
| 655 | 654 |
| 656 DISALLOW_COPY_AND_ASSIGN(Symbols); | 655 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 657 }; | 656 }; |
| 658 | 657 |
| 659 } // namespace dart | 658 } // namespace dart |
| 660 | 659 |
| 661 #endif // VM_SYMBOLS_H_ | 660 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |