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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \ | 48 V(_AsyncStarStreamControllerConstructor, "_AsyncStarStreamController.") \ |
49 V(Controller, ":controller") \ | 49 V(Controller, ":controller") \ |
50 V(Stream, "stream") \ | 50 V(Stream, "stream") \ |
51 V(isPaused, "isPaused") \ | 51 V(isPaused, "isPaused") \ |
52 V(AddError, "addError") \ | 52 V(AddError, "addError") \ |
53 V(AddStream, "addStream") \ | 53 V(AddStream, "addStream") \ |
54 V(Cancel, "cancel") \ | 54 V(Cancel, "cancel") \ |
55 V(Close, "close") \ | 55 V(Close, "close") \ |
56 V(Values, "values") \ | 56 V(Values, "values") \ |
57 V(_EnumNames, "_enum_names") \ | 57 V(_EnumNames, "_enum_names") \ |
| 58 V(_DeletedEnumSentinel, "_deleted_enum_sentinel") \ |
| 59 V(_DeletedEnumPrefix, "Deleted enum value from ") \ |
58 V(ExprTemp, ":expr_temp") \ | 60 V(ExprTemp, ":expr_temp") \ |
59 V(FinallyRetVal, ":finally_ret_val") \ | 61 V(FinallyRetVal, ":finally_ret_val") \ |
60 V(AnonymousClosure, "<anonymous closure>") \ | 62 V(AnonymousClosure, "<anonymous closure>") \ |
61 V(AnonymousSignature, "<anonymous signature>") \ | 63 V(AnonymousSignature, "<anonymous signature>") \ |
62 V(ImplicitClosure, "<implicit closure>") \ | 64 V(ImplicitClosure, "<implicit closure>") \ |
63 V(ClosureParameter, ":closure") \ | 65 V(ClosureParameter, ":closure") \ |
64 V(TypeArgumentsParameter, ":type_arguments") \ | 66 V(TypeArgumentsParameter, ":type_arguments") \ |
65 V(FunctionInstantiatorVar, ":function_instantiator_var") \ | 67 V(FunctionInstantiatorVar, ":function_instantiator_var") \ |
66 V(AssertionError, "_AssertionError") \ | 68 V(AssertionError, "_AssertionError") \ |
67 V(CastError, "_CastError") \ | 69 V(CastError, "_CastError") \ |
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
665 friend class Serializer; | 667 friend class Serializer; |
666 friend class Deserializer; | 668 friend class Deserializer; |
667 friend class ApiMessageReader; | 669 friend class ApiMessageReader; |
668 | 670 |
669 DISALLOW_COPY_AND_ASSIGN(Symbols); | 671 DISALLOW_COPY_AND_ASSIGN(Symbols); |
670 }; | 672 }; |
671 | 673 |
672 } // namespace dart | 674 } // namespace dart |
673 | 675 |
674 #endif // RUNTIME_VM_SYMBOLS_H_ | 676 #endif // RUNTIME_VM_SYMBOLS_H_ |
OLD | NEW |