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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/elements/elements.dart

Issue 62373009: Field property naming fix - issues 14096, 14806 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review changes Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/elements/modelx.dart » ('j') | 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 library elements; 5 library elements;
6 6
7 7
8 import '../tree/tree.dart'; 8 import '../tree/tree.dart';
9 import '../util/util.dart'; 9 import '../util/util.dart';
10 import '../resolution/resolution.dart'; 10 import '../resolution/resolution.dart';
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 void set interfaces(Link<DartType> value); 870 void set interfaces(Link<DartType> value);
871 void set patch(ClassElement value); 871 void set patch(ClassElement value);
872 void set origin(ClassElement value); 872 void set origin(ClassElement value);
873 void set supertypeLoadState(int value); 873 void set supertypeLoadState(int value);
874 void set resolutionState(int value); 874 void set resolutionState(int value);
875 void set nativeTagInfo(String value); 875 void set nativeTagInfo(String value);
876 876
877 bool isObject(Compiler compiler); 877 bool isObject(Compiler compiler);
878 bool isSubclassOf(ClassElement cls); 878 bool isSubclassOf(ClassElement cls);
879 bool implementsInterface(ClassElement intrface); 879 bool implementsInterface(ClassElement intrface);
880 bool isShadowedByField(Element fieldMember); 880 bool hasFieldShadowedBy(Element fieldMember);
881 881
882 ClassElement ensureResolved(Compiler compiler); 882 ClassElement ensureResolved(Compiler compiler);
883 883
884 void addMember(Element element, DiagnosticListener listener); 884 void addMember(Element element, DiagnosticListener listener);
885 void addToScope(Element element, DiagnosticListener listener); 885 void addToScope(Element element, DiagnosticListener listener);
886 886
887 void setDefaultConstructor(FunctionElement constructor, Compiler compiler); 887 void setDefaultConstructor(FunctionElement constructor, Compiler compiler);
888 888
889 void addBackendMember(Element element); 889 void addBackendMember(Element element);
890 void reverseBackendMembers(); 890 void reverseBackendMembers();
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 int get resolutionState; 978 int get resolutionState;
979 Token get beginToken; 979 Token get beginToken;
980 Token get endToken; 980 Token get endToken;
981 981
982 // TODO(kasperl): Try to get rid of these. 982 // TODO(kasperl): Try to get rid of these.
983 void set annotatedElement(Element value); 983 void set annotatedElement(Element value);
984 void set resolutionState(int value); 984 void set resolutionState(int value);
985 985
986 MetadataAnnotation ensureResolved(Compiler compiler); 986 MetadataAnnotation ensureResolved(Compiler compiler);
987 } 987 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/elements/modelx.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698