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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 V(Double, "_Double") \ | 107 V(Double, "_Double") \ |
108 V(Bool, "bool") \ | 108 V(Bool, "bool") \ |
109 V(ObjectArray, "_ObjectArray") \ | 109 V(ObjectArray, "_ObjectArray") \ |
110 V(GrowableObjectArray, "_GrowableObjectArray") \ | 110 V(GrowableObjectArray, "_GrowableObjectArray") \ |
111 V(ImmutableArray, "_ImmutableArray") \ | 111 V(ImmutableArray, "_ImmutableArray") \ |
112 V(OneByteString, "_OneByteString") \ | 112 V(OneByteString, "_OneByteString") \ |
113 V(TwoByteString, "_TwoByteString") \ | 113 V(TwoByteString, "_TwoByteString") \ |
114 V(ExternalOneByteString, "_ExternalOneByteString") \ | 114 V(ExternalOneByteString, "_ExternalOneByteString") \ |
115 V(ExternalTwoByteString, "_ExternalTwoByteString") \ | 115 V(ExternalTwoByteString, "_ExternalTwoByteString") \ |
116 V(Stacktrace, "Stacktrace") \ | 116 V(Stacktrace, "Stacktrace") \ |
117 V(JSSyntaxRegExp, "JSSyntaxRegExp") \ | 117 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ |
118 V(Object, "Object") \ | 118 V(Object, "Object") \ |
119 V(_Int8Array, "_Int8Array") \ | 119 V(_Int8Array, "_Int8Array") \ |
120 V(_Uint8Array, "_Uint8Array") \ | 120 V(_Uint8Array, "_Uint8Array") \ |
121 V(_Int16Array, "_Int16Array") \ | 121 V(_Int16Array, "_Int16Array") \ |
122 V(_Uint16Array, "_Uint16Array") \ | 122 V(_Uint16Array, "_Uint16Array") \ |
123 V(_Int32Array, "_Int32Array") \ | 123 V(_Int32Array, "_Int32Array") \ |
124 V(_Uint32Array, "_Uint32Array") \ | 124 V(_Uint32Array, "_Uint32Array") \ |
125 V(_Int64Array, "_Int64Array") \ | 125 V(_Int64Array, "_Int64Array") \ |
126 V(_Uint64Array, "_Uint64Array") \ | 126 V(_Uint64Array, "_Uint64Array") \ |
127 V(_Float32Array, "_Float32Array") \ | 127 V(_Float32Array, "_Float32Array") \ |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 friend class SnapshotReader; | 226 friend class SnapshotReader; |
227 friend class SnapshotWriter; | 227 friend class SnapshotWriter; |
228 friend class ApiMessageReader; | 228 friend class ApiMessageReader; |
229 | 229 |
230 DISALLOW_COPY_AND_ASSIGN(Symbols); | 230 DISALLOW_COPY_AND_ASSIGN(Symbols); |
231 }; | 231 }; |
232 | 232 |
233 } // namespace dart | 233 } // namespace dart |
234 | 234 |
235 #endif // VM_SYMBOLS_H_ | 235 #endif // VM_SYMBOLS_H_ |
OLD | NEW |