| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 V(ImmutableArray, "_ImmutableArray") \ | 113 V(ImmutableArray, "_ImmutableArray") \ |
| 114 V(OneByteString, "_OneByteString") \ | 114 V(OneByteString, "_OneByteString") \ |
| 115 V(TwoByteString, "_TwoByteString") \ | 115 V(TwoByteString, "_TwoByteString") \ |
| 116 V(ExternalOneByteString, "_ExternalOneByteString") \ | 116 V(ExternalOneByteString, "_ExternalOneByteString") \ |
| 117 V(ExternalTwoByteString, "_ExternalTwoByteString") \ | 117 V(ExternalTwoByteString, "_ExternalTwoByteString") \ |
| 118 V(Stacktrace, "Stacktrace") \ | 118 V(Stacktrace, "Stacktrace") \ |
| 119 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ | 119 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ |
| 120 V(Object, "Object") \ | 120 V(Object, "Object") \ |
| 121 V(_Int8Array, "_Int8Array") \ | 121 V(_Int8Array, "_Int8Array") \ |
| 122 V(_Uint8Array, "_Uint8Array") \ | 122 V(_Uint8Array, "_Uint8Array") \ |
| 123 V(_Uint8ClampedArray, "_Uint8ClampedArray") \ |
| 123 V(_Int16Array, "_Int16Array") \ | 124 V(_Int16Array, "_Int16Array") \ |
| 124 V(_Uint16Array, "_Uint16Array") \ | 125 V(_Uint16Array, "_Uint16Array") \ |
| 125 V(_Int32Array, "_Int32Array") \ | 126 V(_Int32Array, "_Int32Array") \ |
| 126 V(_Uint32Array, "_Uint32Array") \ | 127 V(_Uint32Array, "_Uint32Array") \ |
| 127 V(_Int64Array, "_Int64Array") \ | 128 V(_Int64Array, "_Int64Array") \ |
| 128 V(_Uint64Array, "_Uint64Array") \ | 129 V(_Uint64Array, "_Uint64Array") \ |
| 129 V(_Float32Array, "_Float32Array") \ | 130 V(_Float32Array, "_Float32Array") \ |
| 130 V(_Float64Array, "_Float64Array") \ | 131 V(_Float64Array, "_Float64Array") \ |
| 131 V(_ExternalInt8Array, "_ExternalInt8Array") \ | 132 V(_ExternalInt8Array, "_ExternalInt8Array") \ |
| 132 V(_ExternalUint8Array, "_ExternalUint8Array") \ | 133 V(_ExternalUint8Array, "_ExternalUint8Array") \ |
| 134 V(_ExternalUint8ClampedArray, "_ExternalUint8ClampedArray") \ |
| 133 V(_ExternalInt16Array, "_ExternalInt16Array") \ | 135 V(_ExternalInt16Array, "_ExternalInt16Array") \ |
| 134 V(_ExternalUint16Array, "_ExternalUint16Array") \ | 136 V(_ExternalUint16Array, "_ExternalUint16Array") \ |
| 135 V(_ExternalInt32Array, "_ExternalInt32Array") \ | 137 V(_ExternalInt32Array, "_ExternalInt32Array") \ |
| 136 V(_ExternalUint32Array, "_ExternalUint32Array") \ | 138 V(_ExternalUint32Array, "_ExternalUint32Array") \ |
| 137 V(_ExternalInt64Array, "_ExternalInt64Array") \ | 139 V(_ExternalInt64Array, "_ExternalInt64Array") \ |
| 138 V(_ExternalUint64Array, "_ExternalUint64Array") \ | 140 V(_ExternalUint64Array, "_ExternalUint64Array") \ |
| 139 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ | 141 V(_ExternalFloat32Array, "_ExternalFloat32Array") \ |
| 140 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ | 142 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ |
| 141 V(_WeakProperty, "_WeakProperty") \ | 143 V(_WeakProperty, "_WeakProperty") \ |
| 142 V(InvocationMirror, "_InvocationMirror") \ | 144 V(InvocationMirror, "_InvocationMirror") \ |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 friend class SnapshotReader; | 259 friend class SnapshotReader; |
| 258 friend class SnapshotWriter; | 260 friend class SnapshotWriter; |
| 259 friend class ApiMessageReader; | 261 friend class ApiMessageReader; |
| 260 | 262 |
| 261 DISALLOW_COPY_AND_ASSIGN(Symbols); | 263 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 262 }; | 264 }; |
| 263 | 265 |
| 264 } // namespace dart | 266 } // namespace dart |
| 265 | 267 |
| 266 #endif // VM_SYMBOLS_H_ | 268 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |