| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 friend class SnapshotReader; | 238 friend class SnapshotReader; |
| 238 friend class SnapshotWriter; | 239 friend class SnapshotWriter; |
| 239 friend class ApiMessageReader; | 240 friend class ApiMessageReader; |
| 240 | 241 |
| 241 DISALLOW_COPY_AND_ASSIGN(Symbols); | 242 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 242 }; | 243 }; |
| 243 | 244 |
| 244 } // namespace dart | 245 } // namespace dart |
| 245 | 246 |
| 246 #endif // VM_SYMBOLS_H_ | 247 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |