| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 V(_ImmutableList, "_ImmutableList") \ | 168 V(_ImmutableList, "_ImmutableList") \ |
| 169 V(_LinkedHashMap, "_InternalLinkedHashMap") \ | 169 V(_LinkedHashMap, "_InternalLinkedHashMap") \ |
| 170 V(_String, "String") \ | 170 V(_String, "String") \ |
| 171 V(OneByteString, "_OneByteString") \ | 171 V(OneByteString, "_OneByteString") \ |
| 172 V(TwoByteString, "_TwoByteString") \ | 172 V(TwoByteString, "_TwoByteString") \ |
| 173 V(ExternalOneByteString, "_ExternalOneByteString") \ | 173 V(ExternalOneByteString, "_ExternalOneByteString") \ |
| 174 V(ExternalTwoByteString, "_ExternalTwoByteString") \ | 174 V(ExternalTwoByteString, "_ExternalTwoByteString") \ |
| 175 V(_CapabilityImpl, "_CapabilityImpl") \ | 175 V(_CapabilityImpl, "_CapabilityImpl") \ |
| 176 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ | 176 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ |
| 177 V(_SendPortImpl, "_SendPortImpl") \ | 177 V(_SendPortImpl, "_SendPortImpl") \ |
| 178 V(StackTrace, "StackTrace") \ | 178 V(_StackTrace, "_StackTrace") \ |
| 179 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ | 179 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ |
| 180 V(RegExp, "RegExp") \ | 180 V(RegExp, "RegExp") \ |
| 181 V(Irregexp, ":irregexp") \ | 181 V(Irregexp, ":irregexp") \ |
| 182 V(Object, "Object") \ | 182 V(Object, "Object") \ |
| 183 V(Int, "int") \ | 183 V(Int, "int") \ |
| 184 V(Double, "double") \ | 184 V(Double, "double") \ |
| 185 V(_Float32x4, "_Float32x4") \ | 185 V(_Float32x4, "_Float32x4") \ |
| 186 V(_Float64x2, "_Float64x2") \ | 186 V(_Float64x2, "_Float64x2") \ |
| 187 V(_Int32x4, "_Int32x4") \ | 187 V(_Int32x4, "_Int32x4") \ |
| 188 V(Float32x4, "Float32x4") \ | 188 V(Float32x4, "Float32x4") \ |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 friend class SnapshotReader; | 582 friend class SnapshotReader; |
| 583 friend class SnapshotWriter; | 583 friend class SnapshotWriter; |
| 584 friend class ApiMessageReader; | 584 friend class ApiMessageReader; |
| 585 | 585 |
| 586 DISALLOW_COPY_AND_ASSIGN(Symbols); | 586 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 587 }; | 587 }; |
| 588 | 588 |
| 589 } // namespace dart | 589 } // namespace dart |
| 590 | 590 |
| 591 #endif // VM_SYMBOLS_H_ | 591 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |