| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 V(ClosureData, "ClosureData") \ | 142 V(ClosureData, "ClosureData") \ |
| 143 V(RedirectionData, "RedirectionData") \ | 143 V(RedirectionData, "RedirectionData") \ |
| 144 V(Field, "Field") \ | 144 V(Field, "Field") \ |
| 145 V(LiteralToken, "LiteralToken") \ | 145 V(LiteralToken, "LiteralToken") \ |
| 146 V(TokenStream, "TokenStream") \ | 146 V(TokenStream, "TokenStream") \ |
| 147 V(Script, "Script") \ | 147 V(Script, "Script") \ |
| 148 V(LibraryClass, "Library") \ | 148 V(LibraryClass, "Library") \ |
| 149 V(LibraryPrefix, "LibraryPrefix") \ | 149 V(LibraryPrefix, "LibraryPrefix") \ |
| 150 V(Namespace, "Namespace") \ | 150 V(Namespace, "Namespace") \ |
| 151 V(Code, "Code") \ | 151 V(Code, "Code") \ |
| 152 V(ObjectPool, "ObjectPool") \ |
| 152 V(Instructions, "Instructions") \ | 153 V(Instructions, "Instructions") \ |
| 153 V(PcDescriptors, "PcDescriptors") \ | 154 V(PcDescriptors, "PcDescriptors") \ |
| 154 V(Stackmap, "Stackmap") \ | 155 V(Stackmap, "Stackmap") \ |
| 155 V(LocalVarDescriptors, "LocalVarDescriptors") \ | 156 V(LocalVarDescriptors, "LocalVarDescriptors") \ |
| 156 V(ExceptionHandlers, "ExceptionHandlers") \ | 157 V(ExceptionHandlers, "ExceptionHandlers") \ |
| 157 V(DeoptInfo, "DeoptInfo") \ | 158 V(DeoptInfo, "DeoptInfo") \ |
| 158 V(Context, "Context") \ | 159 V(Context, "Context") \ |
| 159 V(ContextScope, "ContextScope") \ | 160 V(ContextScope, "ContextScope") \ |
| 160 V(ICData, "ICData") \ | 161 V(ICData, "ICData") \ |
| 161 V(MegamorphicCache, "MegamorphicCache") \ | 162 V(MegamorphicCache, "MegamorphicCache") \ |
| (...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 friend class SnapshotReader; | 620 friend class SnapshotReader; |
| 620 friend class SnapshotWriter; | 621 friend class SnapshotWriter; |
| 621 friend class ApiMessageReader; | 622 friend class ApiMessageReader; |
| 622 | 623 |
| 623 DISALLOW_COPY_AND_ASSIGN(Symbols); | 624 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 624 }; | 625 }; |
| 625 | 626 |
| 626 } // namespace dart | 627 } // namespace dart |
| 627 | 628 |
| 628 #endif // VM_SYMBOLS_H_ | 629 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |