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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 V(Library, "library") \ | 68 V(Library, "library") \ |
69 V(Native, "native") \ | 69 V(Native, "native") \ |
70 V(Import, "import") \ | 70 V(Import, "import") \ |
71 V(Source, "source") \ | 71 V(Source, "source") \ |
72 V(Class, "Class") \ | 72 V(Class, "Class") \ |
73 V(Null, "Null") \ | 73 V(Null, "Null") \ |
74 V(Dynamic, "dynamic") \ | 74 V(Dynamic, "dynamic") \ |
75 V(Void, "void") \ | 75 V(Void, "void") \ |
76 V(UnresolvedClass, "UnresolvedClass") \ | 76 V(UnresolvedClass, "UnresolvedClass") \ |
77 V(Type, "_Type") \ | 77 V(Type, "_Type") \ |
| 78 V(TypeRef, "_TypeRef") \ |
78 V(TypeParameter, "_TypeParameter") \ | 79 V(TypeParameter, "_TypeParameter") \ |
79 V(BoundedType, "_BoundedType") \ | 80 V(BoundedType, "_BoundedType") \ |
80 V(MixinAppType, "_MixinAppType") \ | 81 V(MixinAppType, "_MixinAppType") \ |
81 V(TypeArguments, "TypeArguments") \ | 82 V(TypeArguments, "TypeArguments") \ |
82 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ | 83 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ |
83 V(PatchClass, "PatchClass") \ | 84 V(PatchClass, "PatchClass") \ |
84 V(Function, "Function") \ | 85 V(Function, "Function") \ |
85 V(FunctionImpl, "_FunctionImpl") \ | 86 V(FunctionImpl, "_FunctionImpl") \ |
86 V(FunctionResult, "function result") \ | 87 V(FunctionResult, "function result") \ |
87 V(FactoryResult, "factory result") \ | 88 V(FactoryResult, "factory result") \ |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 friend class SnapshotReader; | 509 friend class SnapshotReader; |
509 friend class SnapshotWriter; | 510 friend class SnapshotWriter; |
510 friend class ApiMessageReader; | 511 friend class ApiMessageReader; |
511 | 512 |
512 DISALLOW_COPY_AND_ASSIGN(Symbols); | 513 DISALLOW_COPY_AND_ASSIGN(Symbols); |
513 }; | 514 }; |
514 | 515 |
515 } // namespace dart | 516 } // namespace dart |
516 | 517 |
517 #endif // VM_SYMBOLS_H_ | 518 #endif // VM_SYMBOLS_H_ |
OLD | NEW |