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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 V(Smi, "_Smi") \ | 101 V(Smi, "_Smi") \ |
102 V(Mint, "_Mint") \ | 102 V(Mint, "_Mint") \ |
103 V(Bigint, "_Bigint") \ | 103 V(Bigint, "_Bigint") \ |
104 V(Double, "_Double") \ | 104 V(Double, "_Double") \ |
105 V(Bool, "bool") \ | 105 V(Bool, "bool") \ |
106 V(ObjectArray, "_ObjectArray") \ | 106 V(ObjectArray, "_ObjectArray") \ |
107 V(GrowableObjectArray, "_GrowableObjectArray") \ | 107 V(GrowableObjectArray, "_GrowableObjectArray") \ |
108 V(ImmutableArray, "_ImmutableArray") \ | 108 V(ImmutableArray, "_ImmutableArray") \ |
109 V(OneByteString, "_OneByteString") \ | 109 V(OneByteString, "_OneByteString") \ |
110 V(TwoByteString, "_TwoByteString") \ | 110 V(TwoByteString, "_TwoByteString") \ |
111 V(FourByteString, "_FourByteString") \ | |
112 V(ExternalOneByteString, "_ExternalOneByteString") \ | 111 V(ExternalOneByteString, "_ExternalOneByteString") \ |
113 V(ExternalTwoByteString, "_ExternalTwoByteString") \ | 112 V(ExternalTwoByteString, "_ExternalTwoByteString") \ |
114 V(ExternalFourByteString, "_ExternalFourByteString") \ | |
115 V(Stacktrace, "Stacktrace") \ | 113 V(Stacktrace, "Stacktrace") \ |
116 V(JSSyntaxRegExp, "JSSyntaxRegExp") \ | 114 V(JSSyntaxRegExp, "JSSyntaxRegExp") \ |
117 V(Object, "Object") \ | 115 V(Object, "Object") \ |
118 V(_Int8Array, "_Int8Array") \ | 116 V(_Int8Array, "_Int8Array") \ |
119 V(_Uint8Array, "_Uint8Array") \ | 117 V(_Uint8Array, "_Uint8Array") \ |
120 V(_Int16Array, "_Int16Array") \ | 118 V(_Int16Array, "_Int16Array") \ |
121 V(_Uint16Array, "_Uint16Array") \ | 119 V(_Uint16Array, "_Uint16Array") \ |
122 V(_Int32Array, "_Int32Array") \ | 120 V(_Int32Array, "_Int32Array") \ |
123 V(_Uint32Array, "_Uint32Array") \ | 121 V(_Uint32Array, "_Uint32Array") \ |
124 V(_Int64Array, "_Int64Array") \ | 122 V(_Int64Array, "_Int64Array") \ |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 friend class SnapshotReader; | 221 friend class SnapshotReader; |
224 friend class SnapshotWriter; | 222 friend class SnapshotWriter; |
225 friend class ApiMessageReader; | 223 friend class ApiMessageReader; |
226 | 224 |
227 DISALLOW_COPY_AND_ASSIGN(Symbols); | 225 DISALLOW_COPY_AND_ASSIGN(Symbols); |
228 }; | 226 }; |
229 | 227 |
230 } // namespace dart | 228 } // namespace dart |
231 | 229 |
232 #endif // VM_SYMBOLS_H_ | 230 #endif // VM_SYMBOLS_H_ |
OLD | NEW |