| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 V(ExceptionHandlers, "ExceptionHandlers") \ | 86 V(ExceptionHandlers, "ExceptionHandlers") \ |
| 87 V(DeoptInfo, "DeoptInfo") \ | 87 V(DeoptInfo, "DeoptInfo") \ |
| 88 V(Context, "Context") \ | 88 V(Context, "Context") \ |
| 89 V(ContextScope, "ContextScope") \ | 89 V(ContextScope, "ContextScope") \ |
| 90 V(ICData, "ICData") \ | 90 V(ICData, "ICData") \ |
| 91 V(SubtypeTestCache, "SubtypeTestCache") \ | 91 V(SubtypeTestCache, "SubtypeTestCache") \ |
| 92 V(ApiError, "ApiError") \ | 92 V(ApiError, "ApiError") \ |
| 93 V(LanguageError, "LanguageError") \ | 93 V(LanguageError, "LanguageError") \ |
| 94 V(UnhandledException, "UnhandledException") \ | 94 V(UnhandledException, "UnhandledException") \ |
| 95 V(UnwindError, "UnwindError") \ | 95 V(UnwindError, "UnwindError") \ |
| 96 V(IntegerImplementation, "IntegerImplementation") \ | 96 V(IntegerImplementation, "_IntegerImplementation") \ |
| 97 V(Number, "num") \ | 97 V(Number, "num") \ |
| 98 V(Smi, "Smi") \ | 98 V(Smi, "_Smi") \ |
| 99 V(Mint, "Mint") \ | 99 V(Mint, "_Mint") \ |
| 100 V(Bigint, "Bigint") \ | 100 V(Bigint, "_Bigint") \ |
| 101 V(Double, "Double") \ | 101 V(Double, "_Double") \ |
| 102 V(Bool, "bool") \ | 102 V(Bool, "bool") \ |
| 103 V(ObjectArray, "ObjectArray") \ | 103 V(ObjectArray, "ObjectArray") \ |
| 104 V(GrowableObjectArray, "GrowableObjectArray") \ | 104 V(GrowableObjectArray, "GrowableObjectArray") \ |
| 105 V(ImmutableArray, "ImmutableArray") \ | 105 V(ImmutableArray, "ImmutableArray") \ |
| 106 V(OneByteString, "OneByteString") \ | 106 V(OneByteString, "OneByteString") \ |
| 107 V(TwoByteString, "TwoByteString") \ | 107 V(TwoByteString, "TwoByteString") \ |
| 108 V(FourByteString, "FourByteString") \ | 108 V(FourByteString, "FourByteString") \ |
| 109 V(ExternalOneByteString, "ExternalOneByteString") \ | 109 V(ExternalOneByteString, "ExternalOneByteString") \ |
| 110 V(ExternalTwoByteString, "ExternalTwoByteString") \ | 110 V(ExternalTwoByteString, "ExternalTwoByteString") \ |
| 111 V(ExternalFourByteString, "ExternalFourByteString") \ | 111 V(ExternalFourByteString, "ExternalFourByteString") \ |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 friend class SnapshotReader; | 220 friend class SnapshotReader; |
| 221 friend class SnapshotWriter; | 221 friend class SnapshotWriter; |
| 222 friend class ApiMessageReader; | 222 friend class ApiMessageReader; |
| 223 | 223 |
| 224 DISALLOW_COPY_AND_ASSIGN(Symbols); | 224 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 225 }; | 225 }; |
| 226 | 226 |
| 227 } // namespace dart | 227 } // namespace dart |
| 228 | 228 |
| 229 #endif // VM_SYMBOLS_H_ | 229 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |