| 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 RUNTIME_VM_SYMBOLS_H_ | 5 #ifndef RUNTIME_VM_SYMBOLS_H_ |
| 6 #define RUNTIME_VM_SYMBOLS_H_ | 6 #define RUNTIME_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 28 matching lines...) Expand all Loading... |
| 39 V(MoveNext, "moveNext") \ | 39 V(MoveNext, "moveNext") \ |
| 40 V(IsYieldEach, "isYieldEach") \ | 40 V(IsYieldEach, "isYieldEach") \ |
| 41 V(Value, "value") \ | 41 V(Value, "value") \ |
| 42 V(_EnumHelper, "_EnumHelper") \ | 42 V(_EnumHelper, "_EnumHelper") \ |
| 43 V(_SyncIterable, "_SyncIterable") \ | 43 V(_SyncIterable, "_SyncIterable") \ |
| 44 V(_SyncIterableConstructor, "_SyncIterable.") \ | 44 V(_SyncIterableConstructor, "_SyncIterable.") \ |
| 45 V(_SyncIterator, "_SyncIterator") \ | 45 V(_SyncIterator, "_SyncIterator") \ |
| 46 V(IteratorParameter, ":iterator") \ | 46 V(IteratorParameter, ":iterator") \ |
| 47 V(_AsyncStarStreamController, "_AsyncStarStreamController") \ | 47 V(_AsyncStarStreamController, "_AsyncStarStreamController") \ |
| 48 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \ | 48 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \ |
| 49 V(Controller, ":controller") \ | 49 V(ColonController, ":controller") \ |
| 50 V(ControllerStream, ":controller_stream") \ | 50 V(ControllerStream, ":controller_stream") \ |
| 51 V(Controller2, "controller") \ | |
| 52 V(Stream, "stream") \ | 51 V(Stream, "stream") \ |
| 53 V(_StreamImpl, "_StreamImpl") \ | 52 V(_StreamImpl, "_StreamImpl") \ |
| 54 V(isPaused, "isPaused") \ | 53 V(isPaused, "isPaused") \ |
| 55 V(AddError, "addError") \ | 54 V(AddError, "addError") \ |
| 56 V(AddStream, "addStream") \ | 55 V(AddStream, "addStream") \ |
| 57 V(Cancel, "cancel") \ | 56 V(Cancel, "cancel") \ |
| 58 V(Close, "close") \ | 57 V(Close, "close") \ |
| 59 V(Values, "values") \ | 58 V(Values, "values") \ |
| 60 V(_EnumNames, "_enum_names") \ | 59 V(_EnumNames, "_enum_names") \ |
| 61 V(_DeletedEnumSentinel, "_deleted_enum_sentinel") \ | 60 V(_DeletedEnumSentinel, "_deleted_enum_sentinel") \ |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 friend class Serializer; | 693 friend class Serializer; |
| 695 friend class Deserializer; | 694 friend class Deserializer; |
| 696 friend class ApiMessageReader; | 695 friend class ApiMessageReader; |
| 697 | 696 |
| 698 DISALLOW_COPY_AND_ASSIGN(Symbols); | 697 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 699 }; | 698 }; |
| 700 | 699 |
| 701 } // namespace dart | 700 } // namespace dart |
| 702 | 701 |
| 703 #endif // RUNTIME_VM_SYMBOLS_H_ | 702 #endif // RUNTIME_VM_SYMBOLS_H_ |
| OLD | NEW |