| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 V(Void, "void") \ | 70 V(Void, "void") \ |
| 71 V(UnresolvedClass, "UnresolvedClass") \ | 71 V(UnresolvedClass, "UnresolvedClass") \ |
| 72 V(Type, "_Type") \ | 72 V(Type, "_Type") \ |
| 73 V(TypeParameter, "_TypeParameter") \ | 73 V(TypeParameter, "_TypeParameter") \ |
| 74 V(BoundedType, "_BoundedType") \ | 74 V(BoundedType, "_BoundedType") \ |
| 75 V(MixinAppType, "_MixinAppType") \ | 75 V(MixinAppType, "_MixinAppType") \ |
| 76 V(TypeArguments, "TypeArguments") \ | 76 V(TypeArguments, "TypeArguments") \ |
| 77 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ | 77 V(InstantiatedTypeArguments, "InstantiatedTypeArguments") \ |
| 78 V(PatchClass, "PatchClass") \ | 78 V(PatchClass, "PatchClass") \ |
| 79 V(Function, "Function") \ | 79 V(Function, "Function") \ |
| 80 V(FunctionImpl, "_FunctionImpl") \ |
| 80 V(FunctionResult, "function result") \ | 81 V(FunctionResult, "function result") \ |
| 81 V(FactoryResult, "factory result") \ | 82 V(FactoryResult, "factory result") \ |
| 82 V(ClosureData, "ClosureData") \ | 83 V(ClosureData, "ClosureData") \ |
| 83 V(RedirectionData, "RedirectionData") \ | 84 V(RedirectionData, "RedirectionData") \ |
| 84 V(Field, "Field") \ | 85 V(Field, "Field") \ |
| 85 V(LiteralToken, "LiteralToken") \ | 86 V(LiteralToken, "LiteralToken") \ |
| 86 V(TokenStream, "TokenStream") \ | 87 V(TokenStream, "TokenStream") \ |
| 87 V(Script, "Script") \ | 88 V(Script, "Script") \ |
| 88 V(LibraryClass, "Library") \ | 89 V(LibraryClass, "Library") \ |
| 89 V(LibraryPrefix, "LibraryPrefix") \ | 90 V(LibraryPrefix, "LibraryPrefix") \ |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 friend class SnapshotReader; | 481 friend class SnapshotReader; |
| 481 friend class SnapshotWriter; | 482 friend class SnapshotWriter; |
| 482 friend class ApiMessageReader; | 483 friend class ApiMessageReader; |
| 483 | 484 |
| 484 DISALLOW_COPY_AND_ASSIGN(Symbols); | 485 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 485 }; | 486 }; |
| 486 | 487 |
| 487 } // namespace dart | 488 } // namespace dart |
| 488 | 489 |
| 489 #endif // VM_SYMBOLS_H_ | 490 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |