| 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/growable_array.h" | 8 #include "vm/growable_array.h" |
| 9 #include "vm/object.h" | 9 #include "vm/object.h" |
| 10 #include "vm/snapshot_ids.h" | 10 #include "vm/snapshot_ids.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 V(Identical, "identical") \ | 27 V(Identical, "identical") \ |
| 28 V(Length, "length") \ | 28 V(Length, "length") \ |
| 29 V(_setLength, "_setLength") \ | 29 V(_setLength, "_setLength") \ |
| 30 V(IndexToken, "[]") \ | 30 V(IndexToken, "[]") \ |
| 31 V(AssignIndexToken, "[]=") \ | 31 V(AssignIndexToken, "[]=") \ |
| 32 V(TopLevel, "::") \ | 32 V(TopLevel, "::") \ |
| 33 V(DefaultLabel, ":L") \ | 33 V(DefaultLabel, ":L") \ |
| 34 V(Other, "other") \ | 34 V(Other, "other") \ |
| 35 V(Call, "call") \ | 35 V(Call, "call") \ |
| 36 V(Current, "current") \ | 36 V(Current, "current") \ |
| 37 V(_current, "_current") \ |
| 37 V(MoveNext, "moveNext") \ | 38 V(MoveNext, "moveNext") \ |
| 38 V(IsYieldEach, "isYieldEach") \ | 39 V(IsYieldEach, "isYieldEach") \ |
| 39 V(Value, "value") \ | 40 V(Value, "value") \ |
| 40 V(_EnumHelper, "_EnumHelper") \ | 41 V(_EnumHelper, "_EnumHelper") \ |
| 41 V(_SyncIterable, "_SyncIterable") \ | 42 V(_SyncIterable, "_SyncIterable") \ |
| 42 V(_SyncIterableConstructor, "_SyncIterable.") \ | 43 V(_SyncIterableConstructor, "_SyncIterable.") \ |
| 43 V(_SyncIterator, "_SyncIterator") \ | 44 V(_SyncIterator, "_SyncIterator") \ |
| 44 V(IteratorParameter, ":iterator") \ | 45 V(IteratorParameter, ":iterator") \ |
| 45 V(_AsyncStarStreamController, "_AsyncStarStreamController") \ | 46 V(_AsyncStarStreamController, "_AsyncStarStreamController") \ |
| 46 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \ | 47 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \ |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 friend class SnapshotReader; | 661 friend class SnapshotReader; |
| 661 friend class SnapshotWriter; | 662 friend class SnapshotWriter; |
| 662 friend class ApiMessageReader; | 663 friend class ApiMessageReader; |
| 663 | 664 |
| 664 DISALLOW_COPY_AND_ASSIGN(Symbols); | 665 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 665 }; | 666 }; |
| 666 | 667 |
| 667 } // namespace dart | 668 } // namespace dart |
| 668 | 669 |
| 669 #endif // VM_SYMBOLS_H_ | 670 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |