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 RUNTIME_VM_SYMBOLS_H_ | 5 #ifndef RUNTIME_VM_SYMBOLS_H_ |
6 #define RUNTIME_VM_SYMBOLS_H_ | 6 #define RUNTIME_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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 V(_CapabilityImpl, "_CapabilityImpl") \ | 219 V(_CapabilityImpl, "_CapabilityImpl") \ |
220 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ | 220 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ |
221 V(_SendPortImpl, "_SendPortImpl") \ | 221 V(_SendPortImpl, "_SendPortImpl") \ |
222 V(_StackTrace, "_StackTrace") \ | 222 V(_StackTrace, "_StackTrace") \ |
223 V(_RegExp, "_RegExp") \ | 223 V(_RegExp, "_RegExp") \ |
224 V(RegExp, "RegExp") \ | 224 V(RegExp, "RegExp") \ |
225 V(ColonMatcher, ":matcher") \ | 225 V(ColonMatcher, ":matcher") \ |
226 V(ColonStream, ":stream") \ | 226 V(ColonStream, ":stream") \ |
227 V(Object, "Object") \ | 227 V(Object, "Object") \ |
228 V(Int, "int") \ | 228 V(Int, "int") \ |
229 V(Int64, "_int64") \ | |
230 V(Double, "double") \ | 229 V(Double, "double") \ |
231 V(Float32x4, "Float32x4") \ | 230 V(Float32x4, "Float32x4") \ |
232 V(Float64x2, "Float64x2") \ | 231 V(Float64x2, "Float64x2") \ |
233 V(Int32x4, "Int32x4") \ | 232 V(Int32x4, "Int32x4") \ |
234 V(_Float32x4, "_Float32x4") \ | 233 V(_Float32x4, "_Float32x4") \ |
235 V(_Float64x2, "_Float64x2") \ | 234 V(_Float64x2, "_Float64x2") \ |
236 V(_Int32x4, "_Int32x4") \ | 235 V(_Int32x4, "_Int32x4") \ |
237 V(Int8List, "Int8List") \ | 236 V(Int8List, "Int8List") \ |
238 V(Uint8List, "Uint8List") \ | 237 V(Uint8List, "Uint8List") \ |
239 V(Uint8ClampedList, "Uint8ClampedList") \ | 238 V(Uint8ClampedList, "Uint8ClampedList") \ |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 friend class Serializer; | 690 friend class Serializer; |
692 friend class Deserializer; | 691 friend class Deserializer; |
693 friend class ApiMessageReader; | 692 friend class ApiMessageReader; |
694 | 693 |
695 DISALLOW_COPY_AND_ASSIGN(Symbols); | 694 DISALLOW_COPY_AND_ASSIGN(Symbols); |
696 }; | 695 }; |
697 | 696 |
698 } // namespace dart | 697 } // namespace dart |
699 | 698 |
700 #endif // RUNTIME_VM_SYMBOLS_H_ | 699 #endif // RUNTIME_VM_SYMBOLS_H_ |
OLD | NEW |