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(True, "true") \ | 141 V(True, "true") \ |
141 V(False, "false") \ | 142 V(False, "false") \ |
142 V(_List, "_List") \ | 143 V(_List, "_List") \ |
143 V(_ListFactory, "_List.") \ | 144 V(_ListFactory, "_List.") \ |
144 V(_GrowableList, "_GrowableList") \ | 145 V(_GrowableList, "_GrowableList") \ |
145 V(_GrowableListFactory, "_GrowableList.") \ | 146 V(_GrowableListFactory, "_GrowableList.") \ |
146 V(_GrowableListWithData, "_GrowableList.withData") \ | 147 V(_GrowableListWithData, "_GrowableList.withData") \ |
147 V(_ImmutableList, "_ImmutableList") \ | 148 V(_ImmutableList, "_ImmutableList") \ |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 friend class SnapshotReader; | 513 friend class SnapshotReader; |
513 friend class SnapshotWriter; | 514 friend class SnapshotWriter; |
514 friend class ApiMessageReader; | 515 friend class ApiMessageReader; |
515 | 516 |
516 DISALLOW_COPY_AND_ASSIGN(Symbols); | 517 DISALLOW_COPY_AND_ASSIGN(Symbols); |
517 }; | 518 }; |
518 | 519 |
519 } // namespace dart | 520 } // namespace dart |
520 | 521 |
521 #endif // VM_SYMBOLS_H_ | 522 #endif // VM_SYMBOLS_H_ |
OLD | NEW |