| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 V(ApiError, "ApiError") \ | 84 V(ApiError, "ApiError") \ |
| 85 V(LanguageError, "LanguageError") \ | 85 V(LanguageError, "LanguageError") \ |
| 86 V(UnhandledException, "UnhandledException") \ | 86 V(UnhandledException, "UnhandledException") \ |
| 87 V(UnwindError, "UnwindError") \ | 87 V(UnwindError, "UnwindError") \ |
| 88 V(IntegerImplementation, "IntegerImplementation") \ | 88 V(IntegerImplementation, "IntegerImplementation") \ |
| 89 V(Number, "num") \ | 89 V(Number, "num") \ |
| 90 V(Smi, "Smi") \ | 90 V(Smi, "Smi") \ |
| 91 V(Mint, "Mint") \ | 91 V(Mint, "Mint") \ |
| 92 V(Bigint, "Bigint") \ | 92 V(Bigint, "Bigint") \ |
| 93 V(Double, "Double") \ | 93 V(Double, "Double") \ |
| 94 V(Bool, "Bool") \ | 94 V(Bool, "bool") \ |
| 95 V(ObjectArray, "ObjectArray") \ | 95 V(ObjectArray, "ObjectArray") \ |
| 96 V(GrowableObjectArray, "GrowableObjectArray") \ | 96 V(GrowableObjectArray, "GrowableObjectArray") \ |
| 97 V(ImmutableArray, "ImmutableArray") \ | 97 V(ImmutableArray, "ImmutableArray") \ |
| 98 V(OneByteString, "OneByteString") \ | 98 V(OneByteString, "OneByteString") \ |
| 99 V(TwoByteString, "TwoByteString") \ | 99 V(TwoByteString, "TwoByteString") \ |
| 100 V(FourByteString, "FourByteString") \ | 100 V(FourByteString, "FourByteString") \ |
| 101 V(ExternalOneByteString, "ExternalOneByteString") \ | 101 V(ExternalOneByteString, "ExternalOneByteString") \ |
| 102 V(ExternalTwoByteString, "ExternalTwoByteString") \ | 102 V(ExternalTwoByteString, "ExternalTwoByteString") \ |
| 103 V(ExternalFourByteString, "ExternalFourByteString") \ | 103 V(ExternalFourByteString, "ExternalFourByteString") \ |
| 104 V(Stacktrace, "Stacktrace") \ | 104 V(Stacktrace, "Stacktrace") \ |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 friend class SnapshotReader; | 210 friend class SnapshotReader; |
| 211 friend class SnapshotWriter; | 211 friend class SnapshotWriter; |
| 212 friend class ApiMessageReader; | 212 friend class ApiMessageReader; |
| 213 | 213 |
| 214 DISALLOW_COPY_AND_ASSIGN(Symbols); | 214 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 215 }; | 215 }; |
| 216 | 216 |
| 217 } // namespace dart | 217 } // namespace dart |
| 218 | 218 |
| 219 #endif // VM_SYMBOLS_H_ | 219 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |