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