| 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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ | 267 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ |
| 268 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \ | 268 V(_ExternalFloat64x2Array, "_ExternalFloat64x2Array") \ |
| 269 V(ByteData, "ByteData") \ | 269 V(ByteData, "ByteData") \ |
| 270 V(ByteDataDot, "ByteData.") \ | 270 V(ByteDataDot, "ByteData.") \ |
| 271 V(ByteDataDot_view, "ByteData._view") \ | 271 V(ByteDataDot_view, "ByteData._view") \ |
| 272 V(_ByteDataView, "_ByteDataView") \ | 272 V(_ByteDataView, "_ByteDataView") \ |
| 273 V(ByteBuffer, "ByteBuffer") \ | 273 V(ByteBuffer, "ByteBuffer") \ |
| 274 V(ByteBufferDot_New, "ByteBuffer._New") \ | 274 V(ByteBufferDot_New, "ByteBuffer._New") \ |
| 275 V(_WeakProperty, "_WeakProperty") \ | 275 V(_WeakProperty, "_WeakProperty") \ |
| 276 V(_MirrorReference, "_MirrorReference") \ | 276 V(_MirrorReference, "_MirrorReference") \ |
| 277 V(FreeListElement, "FreeListElement") \ |
| 278 V(ForwardingCorpse, "ForwardingCorpse") \ |
| 277 V(InvocationMirror, "_InvocationMirror") \ | 279 V(InvocationMirror, "_InvocationMirror") \ |
| 278 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ | 280 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ |
| 279 V(toString, "toString") \ | 281 V(toString, "toString") \ |
| 280 V(_lookupHandler, "_lookupHandler") \ | 282 V(_lookupHandler, "_lookupHandler") \ |
| 281 V(_handleMessage, "_handleMessage") \ | 283 V(_handleMessage, "_handleMessage") \ |
| 282 V(DotCreate, "._create") \ | 284 V(DotCreate, "._create") \ |
| 283 V(DotWithType, "._withType") \ | 285 V(DotWithType, "._withType") \ |
| 284 V(_get, "_get") \ | 286 V(_get, "_get") \ |
| 285 V(RangeError, "RangeError") \ | 287 V(RangeError, "RangeError") \ |
| 286 V(DotRange, ".range") \ | 288 V(DotRange, ".range") \ |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 friend class SnapshotReader; | 676 friend class SnapshotReader; |
| 675 friend class SnapshotWriter; | 677 friend class SnapshotWriter; |
| 676 friend class ApiMessageReader; | 678 friend class ApiMessageReader; |
| 677 | 679 |
| 678 DISALLOW_COPY_AND_ASSIGN(Symbols); | 680 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 679 }; | 681 }; |
| 680 | 682 |
| 681 } // namespace dart | 683 } // namespace dart |
| 682 | 684 |
| 683 #endif // VM_SYMBOLS_H_ | 685 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |