| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 V(Library, "library") \ | 63 V(Library, "library") \ |
| 64 V(Import, "import") \ | 64 V(Import, "import") \ |
| 65 V(Source, "source") \ | 65 V(Source, "source") \ |
| 66 V(Class, "Class") \ | 66 V(Class, "Class") \ |
| 67 V(Null, "Null") \ | 67 V(Null, "Null") \ |
| 68 V(Dynamic, "dynamic") \ | 68 V(Dynamic, "dynamic") \ |
| 69 V(Void, "void") \ | 69 V(Void, "void") \ |
| 70 V(UnresolvedClass, "UnresolvedClass") \ | 70 V(UnresolvedClass, "UnresolvedClass") \ |
| 71 V(Type, "_Type") \ | 71 V(Type, "_Type") \ |
| 72 V(TypeParameter, "_TypeParameter") \ | 72 V(TypeParameter, "_TypeParameter") \ |
| 73 V(BoundedType, "_BoundedType") \ |
| 74 V(MixinAppType, "_MixinAppType") \ |
| 73 V(TypeArguments, "TypeArguments") \ | 75 V(TypeArguments, "TypeArguments") \ |
| 74 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ | 76 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ |
| 75 V(PatchClass, "PatchClass") \ | 77 V(PatchClass, "PatchClass") \ |
| 76 V(Function, "Function") \ | 78 V(Function, "Function") \ |
| 77 V(FunctionResult, "function result") \ | 79 V(FunctionResult, "function result") \ |
| 78 V(FactoryResult, "factory result") \ | 80 V(FactoryResult, "factory result") \ |
| 79 V(ClosureData, "ClosureData") \ | 81 V(ClosureData, "ClosureData") \ |
| 80 V(RedirectionData, "RedirectionData") \ | 82 V(RedirectionData, "RedirectionData") \ |
| 81 V(Field, "Field") \ | 83 V(Field, "Field") \ |
| 82 V(LiteralToken, "LiteralToken") \ | 84 V(LiteralToken, "LiteralToken") \ |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 friend class SnapshotReader; | 460 friend class SnapshotReader; |
| 459 friend class SnapshotWriter; | 461 friend class SnapshotWriter; |
| 460 friend class ApiMessageReader; | 462 friend class ApiMessageReader; |
| 461 | 463 |
| 462 DISALLOW_COPY_AND_ASSIGN(Symbols); | 464 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 463 }; | 465 }; |
| 464 | 466 |
| 465 } // namespace dart | 467 } // namespace dart |
| 466 | 468 |
| 467 #endif // VM_SYMBOLS_H_ | 469 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |