| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 V(Code, "Code") \ | 89 V(Code, "Code") \ |
| 90 V(Instructions, "Instructions") \ | 90 V(Instructions, "Instructions") \ |
| 91 V(PcDescriptors, "PcDescriptors") \ | 91 V(PcDescriptors, "PcDescriptors") \ |
| 92 V(Stackmap, "Stackmap") \ | 92 V(Stackmap, "Stackmap") \ |
| 93 V(LocalVarDescriptors, "LocalVarDescriptors") \ | 93 V(LocalVarDescriptors, "LocalVarDescriptors") \ |
| 94 V(ExceptionHandlers, "ExceptionHandlers") \ | 94 V(ExceptionHandlers, "ExceptionHandlers") \ |
| 95 V(DeoptInfo, "DeoptInfo") \ | 95 V(DeoptInfo, "DeoptInfo") \ |
| 96 V(Context, "Context") \ | 96 V(Context, "Context") \ |
| 97 V(ContextScope, "ContextScope") \ | 97 V(ContextScope, "ContextScope") \ |
| 98 V(ICData, "ICData") \ | 98 V(ICData, "ICData") \ |
| 99 V(MegamorphicCache, "MegamorphicCache") \ |
| 99 V(SubtypeTestCache, "SubtypeTestCache") \ | 100 V(SubtypeTestCache, "SubtypeTestCache") \ |
| 100 V(ApiError, "ApiError") \ | 101 V(ApiError, "ApiError") \ |
| 101 V(LanguageError, "LanguageError") \ | 102 V(LanguageError, "LanguageError") \ |
| 102 V(UnhandledException, "UnhandledException") \ | 103 V(UnhandledException, "UnhandledException") \ |
| 103 V(UnwindError, "UnwindError") \ | 104 V(UnwindError, "UnwindError") \ |
| 104 V(IntegerImplementation, "_IntegerImplementation") \ | 105 V(IntegerImplementation, "_IntegerImplementation") \ |
| 105 V(Number, "num") \ | 106 V(Number, "num") \ |
| 106 V(Smi, "_Smi") \ | 107 V(Smi, "_Smi") \ |
| 107 V(Mint, "_Mint") \ | 108 V(Mint, "_Mint") \ |
| 108 V(Bigint, "_Bigint") \ | 109 V(Bigint, "_Bigint") \ |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 friend class SnapshotReader; | 258 friend class SnapshotReader; |
| 258 friend class SnapshotWriter; | 259 friend class SnapshotWriter; |
| 259 friend class ApiMessageReader; | 260 friend class ApiMessageReader; |
| 260 | 261 |
| 261 DISALLOW_COPY_AND_ASSIGN(Symbols); | 262 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 262 }; | 263 }; |
| 263 | 264 |
| 264 } // namespace dart | 265 } // namespace dart |
| 265 | 266 |
| 266 #endif // VM_SYMBOLS_H_ | 267 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |