| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 V(Error, "Error") \ | 128 V(Error, "Error") \ |
| 129 V(ApiError, "ApiError") \ | 129 V(ApiError, "ApiError") \ |
| 130 V(LanguageError, "LanguageError") \ | 130 V(LanguageError, "LanguageError") \ |
| 131 V(UnhandledException, "UnhandledException") \ | 131 V(UnhandledException, "UnhandledException") \ |
| 132 V(UnwindError, "UnwindError") \ | 132 V(UnwindError, "UnwindError") \ |
| 133 V(IntegerImplementation, "_IntegerImplementation") \ | 133 V(IntegerImplementation, "_IntegerImplementation") \ |
| 134 V(Number, "num") \ | 134 V(Number, "num") \ |
| 135 V(_Smi, "_Smi") \ | 135 V(_Smi, "_Smi") \ |
| 136 V(_Mint, "_Mint") \ | 136 V(_Mint, "_Mint") \ |
| 137 V(_Bigint, "_Bigint") \ | 137 V(_Bigint, "_Bigint") \ |
| 138 V(_BigintFromDoubleFactory, "_Bigint._fromDouble") \ |
| 138 V(_Double, "_Double") \ | 139 V(_Double, "_Double") \ |
| 139 V(Bool, "bool") \ | 140 V(Bool, "bool") \ |
| 140 V(_List, "_List") \ | 141 V(_List, "_List") \ |
| 141 V(_ListFactory, "_List.") \ | 142 V(_ListFactory, "_List.") \ |
| 142 V(_GrowableList, "_GrowableList") \ | 143 V(_GrowableList, "_GrowableList") \ |
| 143 V(_GrowableListFactory, "_GrowableList.") \ | 144 V(_GrowableListFactory, "_GrowableList.") \ |
| 144 V(_GrowableListWithData, "_GrowableList.withData") \ | 145 V(_GrowableListWithData, "_GrowableList.withData") \ |
| 145 V(_ImmutableList, "_ImmutableList") \ | 146 V(_ImmutableList, "_ImmutableList") \ |
| 146 V(_LinkedHashMap, "_InternalLinkedHashMap") \ | 147 V(_LinkedHashMap, "_InternalLinkedHashMap") \ |
| 147 V(_String, "String") \ | 148 V(_String, "String") \ |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 friend class SnapshotReader; | 510 friend class SnapshotReader; |
| 510 friend class SnapshotWriter; | 511 friend class SnapshotWriter; |
| 511 friend class ApiMessageReader; | 512 friend class ApiMessageReader; |
| 512 | 513 |
| 513 DISALLOW_COPY_AND_ASSIGN(Symbols); | 514 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 514 }; | 515 }; |
| 515 | 516 |
| 516 } // namespace dart | 517 } // namespace dart |
| 517 | 518 |
| 518 #endif // VM_SYMBOLS_H_ | 519 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |