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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 V(_ExternalUint32Array, "_ExternalUint32Array") \ | 224 V(_ExternalUint32Array, "_ExternalUint32Array") \ |
225 V(_ExternalInt64Array, "_ExternalInt64Array") \ | 225 V(_ExternalInt64Array, "_ExternalInt64Array") \ |
226 V(_ExternalUint64Array, "_ExternalUint64Array") \ | 226 V(_ExternalUint64Array, "_ExternalUint64Array") \ |
227 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ | 227 V(_ExternalFloat32x4Array, "_ExternalFloat32x4Array") \ |
228 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \ | 228 V(_ExternalInt32x4Array, "_ExternalInt32x4Array") \ |
229 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ | 229 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ |
230 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ | 230 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ |
231 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \ | 231 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \ |
232 V(ByteData, "ByteData") \ | 232 V(ByteData, "ByteData") \ |
233 V(ByteDataDot, "ByteData.") \ | 233 V(ByteDataDot, "ByteData.") \ |
| 234 V(ByteDataDot_view, "ByteData._view") \ |
234 V(ByteDataDotview, "ByteData.view") \ | 235 V(ByteDataDotview, "ByteData.view") \ |
235 V(_ByteDataView, "_ByteDataView") \ | 236 V(_ByteDataView, "_ByteDataView") \ |
236 V(_WeakProperty, "_WeakProperty") \ | 237 V(_WeakProperty, "_WeakProperty") \ |
237 V(_MirrorReference, "_MirrorReference") \ | 238 V(_MirrorReference, "_MirrorReference") \ |
238 V(InvocationMirror, "_InvocationMirror") \ | 239 V(InvocationMirror, "_InvocationMirror") \ |
239 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ | 240 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ |
240 V(toString, "toString") \ | 241 V(toString, "toString") \ |
241 V(_lookupHandler, "_lookupHandler") \ | 242 V(_lookupHandler, "_lookupHandler") \ |
242 V(_handleMessage, "_handleMessage") \ | 243 V(_handleMessage, "_handleMessage") \ |
243 V(DotCreate, "._create") \ | 244 V(DotCreate, "._create") \ |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 friend class SnapshotReader; | 537 friend class SnapshotReader; |
537 friend class SnapshotWriter; | 538 friend class SnapshotWriter; |
538 friend class ApiMessageReader; | 539 friend class ApiMessageReader; |
539 | 540 |
540 DISALLOW_COPY_AND_ASSIGN(Symbols); | 541 DISALLOW_COPY_AND_ASSIGN(Symbols); |
541 }; | 542 }; |
542 | 543 |
543 } // namespace dart | 544 } // namespace dart |
544 | 545 |
545 #endif // VM_SYMBOLS_H_ | 546 #endif // VM_SYMBOLS_H_ |
OLD | NEW |