| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 V(OneByteString, "_OneByteString") \ | 164 V(OneByteString, "_OneByteString") \ |
| 165 V(TwoByteString, "_TwoByteString") \ | 165 V(TwoByteString, "_TwoByteString") \ |
| 166 V(ExternalOneByteString, "_ExternalOneByteString") \ | 166 V(ExternalOneByteString, "_ExternalOneByteString") \ |
| 167 V(ExternalTwoByteString, "_ExternalTwoByteString") \ | 167 V(ExternalTwoByteString, "_ExternalTwoByteString") \ |
| 168 V(_CapabilityImpl, "_CapabilityImpl") \ | 168 V(_CapabilityImpl, "_CapabilityImpl") \ |
| 169 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ | 169 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ |
| 170 V(_SendPortImpl, "_SendPortImpl") \ | 170 V(_SendPortImpl, "_SendPortImpl") \ |
| 171 V(StackTrace, "StackTrace") \ | 171 V(StackTrace, "StackTrace") \ |
| 172 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ | 172 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ |
| 173 V(RegExp, "RegExp") \ | 173 V(RegExp, "RegExp") \ |
| 174 V(IrregExp, ":irregexp") \ | 174 V(Irregexp, ":irregexp") \ |
| 175 V(Object, "Object") \ | 175 V(Object, "Object") \ |
| 176 V(Int, "int") \ | 176 V(Int, "int") \ |
| 177 V(Double, "double") \ | 177 V(Double, "double") \ |
| 178 V(_Float32x4, "_Float32x4") \ | 178 V(_Float32x4, "_Float32x4") \ |
| 179 V(_Float64x2, "_Float64x2") \ | 179 V(_Float64x2, "_Float64x2") \ |
| 180 V(_Int32x4, "_Int32x4") \ | 180 V(_Int32x4, "_Int32x4") \ |
| 181 V(Float32x4, "Float32x4") \ | 181 V(Float32x4, "Float32x4") \ |
| 182 V(Float64x2, "Float64x2") \ | 182 V(Float64x2, "Float64x2") \ |
| 183 V(Int32x4, "Int32x4") \ | 183 V(Int32x4, "Int32x4") \ |
| 184 V(Int8List, "Int8List") \ | 184 V(Int8List, "Int8List") \ |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 friend class SnapshotReader; | 575 friend class SnapshotReader; |
| 576 friend class SnapshotWriter; | 576 friend class SnapshotWriter; |
| 577 friend class ApiMessageReader; | 577 friend class ApiMessageReader; |
| 578 | 578 |
| 579 DISALLOW_COPY_AND_ASSIGN(Symbols); | 579 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 580 }; | 580 }; |
| 581 | 581 |
| 582 } // namespace dart | 582 } // namespace dart |
| 583 | 583 |
| 584 #endif // VM_SYMBOLS_H_ | 584 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |