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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 V(Null, "Null") \ | 64 V(Null, "Null") \ |
65 V(Dynamic, "Dynamic") \ | 65 V(Dynamic, "Dynamic") \ |
66 V(Void, "void") \ | 66 V(Void, "void") \ |
67 V(UnresolvedClass, "UnresolvedClass") \ | 67 V(UnresolvedClass, "UnresolvedClass") \ |
68 V(Type, "Type") \ | 68 V(Type, "Type") \ |
69 V(TypeParameter, "TypeParameter") \ | 69 V(TypeParameter, "TypeParameter") \ |
70 V(TypeArguments, "TypeArguments") \ | 70 V(TypeArguments, "TypeArguments") \ |
71 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ | 71 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ |
72 V(PatchClass, "PatchClass") \ | 72 V(PatchClass, "PatchClass") \ |
73 V(Function, "Function") \ | 73 V(Function, "Function") \ |
| 74 V(ClosureData, "ClosureData") \ |
74 V(Field, "Field") \ | 75 V(Field, "Field") \ |
75 V(LiteralToken, "LiteralToken") \ | 76 V(LiteralToken, "LiteralToken") \ |
76 V(TokenStream, "TokenStream") \ | 77 V(TokenStream, "TokenStream") \ |
77 V(Script, "Script") \ | 78 V(Script, "Script") \ |
78 V(LibraryClass, "Library") \ | 79 V(LibraryClass, "Library") \ |
79 V(LibraryPrefix, "LibraryPrefix") \ | 80 V(LibraryPrefix, "LibraryPrefix") \ |
80 V(Code, "Code") \ | 81 V(Code, "Code") \ |
81 V(Instructions, "Instructions") \ | 82 V(Instructions, "Instructions") \ |
82 V(PcDescriptors, "PcDescriptors") \ | 83 V(PcDescriptors, "PcDescriptors") \ |
83 V(Stackmap, "Stackmap") \ | 84 V(Stackmap, "Stackmap") \ |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 friend class SnapshotReader; | 220 friend class SnapshotReader; |
220 friend class SnapshotWriter; | 221 friend class SnapshotWriter; |
221 friend class ApiMessageReader; | 222 friend class ApiMessageReader; |
222 | 223 |
223 DISALLOW_COPY_AND_ASSIGN(Symbols); | 224 DISALLOW_COPY_AND_ASSIGN(Symbols); |
224 }; | 225 }; |
225 | 226 |
226 } // namespace dart | 227 } // namespace dart |
227 | 228 |
228 #endif // VM_SYMBOLS_H_ | 229 #endif // VM_SYMBOLS_H_ |
OLD | NEW |