| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 V(_Mint, "_Mint") \ | 118 V(_Mint, "_Mint") \ |
| 119 V(_Bigint, "_Bigint") \ | 119 V(_Bigint, "_Bigint") \ |
| 120 V(_Double, "_Double") \ | 120 V(_Double, "_Double") \ |
| 121 V(Bool, "bool") \ | 121 V(Bool, "bool") \ |
| 122 V(_List, "_List") \ | 122 V(_List, "_List") \ |
| 123 V(_ListFactory, "_List.") \ | 123 V(_ListFactory, "_List.") \ |
| 124 V(_GrowableList, "_GrowableList") \ | 124 V(_GrowableList, "_GrowableList") \ |
| 125 V(_GrowableListFactory, "_GrowableList.") \ | 125 V(_GrowableListFactory, "_GrowableList.") \ |
| 126 V(_GrowableListWithData, "_GrowableList.withData") \ | 126 V(_GrowableListWithData, "_GrowableList.withData") \ |
| 127 V(_ImmutableList, "_ImmutableList") \ | 127 V(_ImmutableList, "_ImmutableList") \ |
| 128 V(_String, "String") \ |
| 128 V(OneByteString, "_OneByteString") \ | 129 V(OneByteString, "_OneByteString") \ |
| 129 V(TwoByteString, "_TwoByteString") \ | 130 V(TwoByteString, "_TwoByteString") \ |
| 130 V(ExternalOneByteString, "_ExternalOneByteString") \ | 131 V(ExternalOneByteString, "_ExternalOneByteString") \ |
| 131 V(ExternalTwoByteString, "_ExternalTwoByteString") \ | 132 V(ExternalTwoByteString, "_ExternalTwoByteString") \ |
| 132 V(StackTrace, "StackTrace") \ | 133 V(StackTrace, "StackTrace") \ |
| 133 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ | 134 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ |
| 134 V(Object, "Object") \ | 135 V(Object, "Object") \ |
| 135 V(Int, "int") \ | 136 V(Int, "int") \ |
| 136 V(Double, "double") \ | 137 V(Double, "double") \ |
| 137 V(_Float32x4, "_Float32x4") \ | 138 V(_Float32x4, "_Float32x4") \ |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 friend class SnapshotReader; | 512 friend class SnapshotReader; |
| 512 friend class SnapshotWriter; | 513 friend class SnapshotWriter; |
| 513 friend class ApiMessageReader; | 514 friend class ApiMessageReader; |
| 514 | 515 |
| 515 DISALLOW_COPY_AND_ASSIGN(Symbols); | 516 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 516 }; | 517 }; |
| 517 | 518 |
| 518 } // namespace dart | 519 } // namespace dart |
| 519 | 520 |
| 520 #endif // VM_SYMBOLS_H_ | 521 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |