Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(310)

Side by Side Diff: runtime/vm/symbols.h

Issue 2498863002: Map deleted enum values to a sentinel value. (Closed)
Patch Set: asiva review Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698