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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(TypeRef, "_TypeRef") \ |
79 V(TypeParameter, "_TypeParameter") \ | 79 V(TypeParameter, "_TypeParameter") \ |
80 V(BoundedType, "_BoundedType") \ | 80 V(BoundedType, "_BoundedType") \ |
81 V(MixinAppType, "_MixinAppType") \ | 81 V(MixinAppType, "_MixinAppType") \ |
82 V(TypeArguments, "TypeArguments") \ | 82 V(TypeArguments, "TypeArguments") \ |
83 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ | |
84 V(PatchClass, "PatchClass") \ | 83 V(PatchClass, "PatchClass") \ |
85 V(Function, "Function") \ | 84 V(Function, "Function") \ |
86 V(FunctionImpl, "_FunctionImpl") \ | 85 V(FunctionImpl, "_FunctionImpl") \ |
87 V(FunctionResult, "function result") \ | 86 V(FunctionResult, "function result") \ |
88 V(FactoryResult, "factory result") \ | 87 V(FactoryResult, "factory result") \ |
89 V(ClosureData, "ClosureData") \ | 88 V(ClosureData, "ClosureData") \ |
90 V(RedirectionData, "RedirectionData") \ | 89 V(RedirectionData, "RedirectionData") \ |
91 V(Field, "Field") \ | 90 V(Field, "Field") \ |
92 V(LiteralToken, "LiteralToken") \ | 91 V(LiteralToken, "LiteralToken") \ |
93 V(TokenStream, "TokenStream") \ | 92 V(TokenStream, "TokenStream") \ |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 friend class SnapshotReader; | 519 friend class SnapshotReader; |
521 friend class SnapshotWriter; | 520 friend class SnapshotWriter; |
522 friend class ApiMessageReader; | 521 friend class ApiMessageReader; |
523 | 522 |
524 DISALLOW_COPY_AND_ASSIGN(Symbols); | 523 DISALLOW_COPY_AND_ASSIGN(Symbols); |
525 }; | 524 }; |
526 | 525 |
527 } // namespace dart | 526 } // namespace dart |
528 | 527 |
529 #endif // VM_SYMBOLS_H_ | 528 #endif // VM_SYMBOLS_H_ |
OLD | NEW |