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

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

Issue 12374094: Implement complex super assignment. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 months 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
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 import 'dart:uri'; 7 import 'dart:uri';
8 8
9 import 'modelx.dart'; 9 import 'modelx.dart';
10 import '../tree/tree.dart'; 10 import '../tree/tree.dart';
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 * Add a synthetic nullary constructor if there are no other 753 * Add a synthetic nullary constructor if there are no other
754 * constructors. 754 * constructors.
755 */ 755 */
756 void addDefaultConstructorIfNeeded(Compiler compiler); 756 void addDefaultConstructorIfNeeded(Compiler compiler);
757 757
758 void addBackendMember(Element element); 758 void addBackendMember(Element element);
759 void reverseBackendMembers(); 759 void reverseBackendMembers();
760 760
761 Element lookupMember(SourceString memberName); 761 Element lookupMember(SourceString memberName);
762 Element lookupSelector(Selector selector); 762 Element lookupSelector(Selector selector);
763 Element lookupSuperSelector(Selector selector);
763 764
764 Element lookupLocalMember(SourceString memberName); 765 Element lookupLocalMember(SourceString memberName);
765 Element lookupBackendMember(SourceString memberName); 766 Element lookupBackendMember(SourceString memberName);
766 Element lookupSuperMember(SourceString memberName); 767 Element lookupSuperMember(SourceString memberName);
767 768
768 Element lookupSuperMemberInLibrary(SourceString memberName, 769 Element lookupSuperMemberInLibrary(SourceString memberName,
769 LibraryElement library); 770 LibraryElement library);
770 771
771 Element lookupSuperInterfaceMember(SourceString memberName, 772 Element lookupSuperInterfaceMember(SourceString memberName,
772 LibraryElement fromLibrary); 773 LibraryElement fromLibrary);
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 int get resolutionState; 842 int get resolutionState;
842 Token get beginToken; 843 Token get beginToken;
843 Token get endToken; 844 Token get endToken;
844 845
845 // TODO(kasperl): Try to get rid of these. 846 // TODO(kasperl): Try to get rid of these.
846 void set annotatedElement(Element value); 847 void set annotatedElement(Element value);
847 void set resolutionState(int value); 848 void set resolutionState(int value);
848 849
849 MetadataAnnotation ensureResolved(Compiler compiler); 850 MetadataAnnotation ensureResolved(Compiler compiler);
850 } 851 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698