| 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 26 matching lines...) Expand all Loading... |
| 37 V(Call, "call") \ | 37 V(Call, "call") \ |
| 38 V(Current, "current") \ | 38 V(Current, "current") \ |
| 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") \ |
| 48 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \ |
| 49 V(Controller, ":controller") \ |
| 50 V(Stream, "stream") \ |
| 51 V(isPaused, "isPaused") \ |
| 52 V(AddError, "addError") \ |
| 53 V(AddStream, "addStream") \ |
| 54 V(Cancel, "cancel") \ |
| 55 V(Close, "close") \ |
| 47 V(Values, "values") \ | 56 V(Values, "values") \ |
| 48 V(_EnumNames, "_enum_names") \ | 57 V(_EnumNames, "_enum_names") \ |
| 49 V(ExprTemp, ":expr_temp") \ | 58 V(ExprTemp, ":expr_temp") \ |
| 50 V(AnonymousClosure, "<anonymous closure>") \ | 59 V(AnonymousClosure, "<anonymous closure>") \ |
| 51 V(ClosureParameter, ":closure") \ | 60 V(ClosureParameter, ":closure") \ |
| 52 V(PhaseParameter, ":phase") \ | 61 V(PhaseParameter, ":phase") \ |
| 53 V(TypeArgumentsParameter, ":type_arguments") \ | 62 V(TypeArgumentsParameter, ":type_arguments") \ |
| 54 V(AssertionError, "_AssertionError") \ | 63 V(AssertionError, "_AssertionError") \ |
| 55 V(CastError, "_CastError") \ | 64 V(CastError, "_CastError") \ |
| 56 V(TypeError, "_TypeError") \ | 65 V(TypeError, "_TypeError") \ |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 friend class SnapshotReader; | 593 friend class SnapshotReader; |
| 585 friend class SnapshotWriter; | 594 friend class SnapshotWriter; |
| 586 friend class ApiMessageReader; | 595 friend class ApiMessageReader; |
| 587 | 596 |
| 588 DISALLOW_COPY_AND_ASSIGN(Symbols); | 597 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 589 }; | 598 }; |
| 590 | 599 |
| 591 } // namespace dart | 600 } // namespace dart |
| 592 | 601 |
| 593 #endif // VM_SYMBOLS_H_ | 602 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |