| 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 RUNTIME_VM_SYMBOLS_H_ | 5 #ifndef RUNTIME_VM_SYMBOLS_H_ |
| 6 #define RUNTIME_VM_SYMBOLS_H_ | 6 #define RUNTIME_VM_SYMBOLS_H_ |
| 7 | 7 |
| 8 #include "vm/growable_array.h" | 8 #include "vm/growable_array.h" |
| 9 #include "vm/object.h" | 9 #include "vm/object.h" |
| 10 #include "vm/snapshot_ids.h" | 10 #include "vm/snapshot_ids.h" |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 V(BoundedType, "_BoundedType") \ | 149 V(BoundedType, "_BoundedType") \ |
| 150 V(MixinAppType, "_MixinAppType") \ | 150 V(MixinAppType, "_MixinAppType") \ |
| 151 V(TypeArguments, "TypeArguments") \ | 151 V(TypeArguments, "TypeArguments") \ |
| 152 V(Patch, "patch") \ | 152 V(Patch, "patch") \ |
| 153 V(PatchClass, "PatchClass") \ | 153 V(PatchClass, "PatchClass") \ |
| 154 V(Function, "Function") \ | 154 V(Function, "Function") \ |
| 155 V(_Closure, "_Closure") \ | 155 V(_Closure, "_Closure") \ |
| 156 V(FunctionResult, "function result") \ | 156 V(FunctionResult, "function result") \ |
| 157 V(FactoryResult, "factory result") \ | 157 V(FactoryResult, "factory result") \ |
| 158 V(ClosureData, "ClosureData") \ | 158 V(ClosureData, "ClosureData") \ |
| 159 V(SignatureData, "SignatureData") \ |
| 159 V(RedirectionData, "RedirectionData") \ | 160 V(RedirectionData, "RedirectionData") \ |
| 160 V(Field, "Field") \ | 161 V(Field, "Field") \ |
| 161 V(LiteralToken, "LiteralToken") \ | 162 V(LiteralToken, "LiteralToken") \ |
| 162 V(TokenStream, "TokenStream") \ | 163 V(TokenStream, "TokenStream") \ |
| 163 V(Script, "Script") \ | 164 V(Script, "Script") \ |
| 164 V(LibraryClass, "Library") \ | 165 V(LibraryClass, "Library") \ |
| 165 V(LibraryPrefix, "LibraryPrefix") \ | 166 V(LibraryPrefix, "LibraryPrefix") \ |
| 166 V(Namespace, "Namespace") \ | 167 V(Namespace, "Namespace") \ |
| 167 V(Code, "Code") \ | 168 V(Code, "Code") \ |
| 168 V(Instructions, "Instructions") \ | 169 V(Instructions, "Instructions") \ |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 friend class Serializer; | 665 friend class Serializer; |
| 665 friend class Deserializer; | 666 friend class Deserializer; |
| 666 friend class ApiMessageReader; | 667 friend class ApiMessageReader; |
| 667 | 668 |
| 668 DISALLOW_COPY_AND_ASSIGN(Symbols); | 669 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 669 }; | 670 }; |
| 670 | 671 |
| 671 } // namespace dart | 672 } // namespace dart |
| 672 | 673 |
| 673 #endif // RUNTIME_VM_SYMBOLS_H_ | 674 #endif // RUNTIME_VM_SYMBOLS_H_ |
| OLD | NEW |