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/growable_array.h" | 8 #include "vm/growable_array.h" |
9 #include "vm/object.h" | 9 #include "vm/object.h" |
10 #include "vm/snapshot_ids.h" | 10 #include "vm/snapshot_ids.h" |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 V(_LinkedHashMap, "_InternalLinkedHashMap") \ | 192 V(_LinkedHashMap, "_InternalLinkedHashMap") \ |
193 V(_String, "String") \ | 193 V(_String, "String") \ |
194 V(OneByteString, "_OneByteString") \ | 194 V(OneByteString, "_OneByteString") \ |
195 V(TwoByteString, "_TwoByteString") \ | 195 V(TwoByteString, "_TwoByteString") \ |
196 V(ExternalOneByteString, "_ExternalOneByteString") \ | 196 V(ExternalOneByteString, "_ExternalOneByteString") \ |
197 V(ExternalTwoByteString, "_ExternalTwoByteString") \ | 197 V(ExternalTwoByteString, "_ExternalTwoByteString") \ |
198 V(_CapabilityImpl, "_CapabilityImpl") \ | 198 V(_CapabilityImpl, "_CapabilityImpl") \ |
199 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ | 199 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ |
200 V(_SendPortImpl, "_SendPortImpl") \ | 200 V(_SendPortImpl, "_SendPortImpl") \ |
201 V(_StackTrace, "_StackTrace") \ | 201 V(_StackTrace, "_StackTrace") \ |
202 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ | 202 V(_RegExp, "_RegExp") \ |
203 V(RegExp, "RegExp") \ | 203 V(RegExp, "RegExp") \ |
204 V(Irregexp, ":irregexp") \ | 204 V(ColonMatcher, ":matcher") \ |
205 V(Object, "Object") \ | 205 V(Object, "Object") \ |
206 V(Int, "int") \ | 206 V(Int, "int") \ |
207 V(Double, "double") \ | 207 V(Double, "double") \ |
208 V(Float32x4, "Float32x4") \ | 208 V(Float32x4, "Float32x4") \ |
209 V(Float64x2, "Float64x2") \ | 209 V(Float64x2, "Float64x2") \ |
210 V(Int32x4, "Int32x4") \ | 210 V(Int32x4, "Int32x4") \ |
211 V(Int8List, "Int8List") \ | 211 V(Int8List, "Int8List") \ |
212 V(Uint8List, "Uint8List") \ | 212 V(Uint8List, "Uint8List") \ |
213 V(Uint8ClampedList, "Uint8ClampedList") \ | 213 V(Uint8ClampedList, "Uint8ClampedList") \ |
214 V(Int16List, "Int16List") \ | 214 V(Int16List, "Int16List") \ |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 friend class SnapshotReader; | 651 friend class SnapshotReader; |
652 friend class SnapshotWriter; | 652 friend class SnapshotWriter; |
653 friend class ApiMessageReader; | 653 friend class ApiMessageReader; |
654 | 654 |
655 DISALLOW_COPY_AND_ASSIGN(Symbols); | 655 DISALLOW_COPY_AND_ASSIGN(Symbols); |
656 }; | 656 }; |
657 | 657 |
658 } // namespace dart | 658 } // namespace dart |
659 | 659 |
660 #endif // VM_SYMBOLS_H_ | 660 #endif // VM_SYMBOLS_H_ |
OLD | NEW |