| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 V(Resource, "resource") \ | 55 V(Resource, "resource") \ |
| 56 V(Class, "Class") \ | 56 V(Class, "Class") \ |
| 57 V(Null, "Null") \ | 57 V(Null, "Null") \ |
| 58 V(Dynamic, "Dynamic") \ | 58 V(Dynamic, "Dynamic") \ |
| 59 V(Void, "void") \ | 59 V(Void, "void") \ |
| 60 V(UnresolvedClass, "UnresolvedClass") \ | 60 V(UnresolvedClass, "UnresolvedClass") \ |
| 61 V(Type, "Type") \ | 61 V(Type, "Type") \ |
| 62 V(TypeParameter, "TypeParameter") \ | 62 V(TypeParameter, "TypeParameter") \ |
| 63 V(TypeArguments, "TypeArguments") \ | 63 V(TypeArguments, "TypeArguments") \ |
| 64 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ | 64 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ |
| 65 V(PatchClass, "PatchClass") \ |
| 65 V(Function, "Function") \ | 66 V(Function, "Function") \ |
| 66 V(Field, "Field") \ | 67 V(Field, "Field") \ |
| 67 V(LiteralToken, "LiteralToken") \ | 68 V(LiteralToken, "LiteralToken") \ |
| 68 V(TokenStream, "TokenStream") \ | 69 V(TokenStream, "TokenStream") \ |
| 69 V(Script, "Script") \ | 70 V(Script, "Script") \ |
| 70 V(LibraryClass, "Library") \ | 71 V(LibraryClass, "Library") \ |
| 71 V(LibraryPrefix, "LibraryPrefix") \ | 72 V(LibraryPrefix, "LibraryPrefix") \ |
| 72 V(Code, "Code") \ | 73 V(Code, "Code") \ |
| 73 V(Instructions, "Instructions") \ | 74 V(Instructions, "Instructions") \ |
| 74 V(PcDescriptors, "PcDescriptors") \ | 75 V(PcDescriptors, "PcDescriptors") \ |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 friend class SnapshotReader; | 208 friend class SnapshotReader; |
| 208 friend class SnapshotWriter; | 209 friend class SnapshotWriter; |
| 209 friend class ApiMessageReader; | 210 friend class ApiMessageReader; |
| 210 | 211 |
| 211 DISALLOW_COPY_AND_ASSIGN(Symbols); | 212 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 212 }; | 213 }; |
| 213 | 214 |
| 214 } // namespace dart | 215 } // namespace dart |
| 215 | 216 |
| 216 #endif // VM_SYMBOLS_H_ | 217 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |