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

Side by Side Diff: pkg/analyzer2dart/lib/src/modely.dart

Issue 865973008: TBR: Fix the build (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 part of analyzer2dart.element_converter; 5 part of analyzer2dart.element_converter;
6 6
7 7
8 /// Base [dart2js.Element] implementation for converted analyzer elements. 8 /// Base [dart2js.Element] implementation for converted analyzer elements.
9 class ElementY extends dart2js.Element { 9 class ElementY extends dart2js.Element {
10 final ElementConverter converter; 10 final ElementConverter converter;
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 String get nativeTagInfo => unsupported('nativeTagInfo'); 677 String get nativeTagInfo => unsupported('nativeTagInfo');
678 678
679 @override 679 @override
680 void reverseBackendMembers() => unsupported('reverseBackendMembers'); 680 void reverseBackendMembers() => unsupported('reverseBackendMembers');
681 681
682 @override 682 @override
683 dart2js.ClassElement get superclass => unsupported('superclass'); 683 dart2js.ClassElement get superclass => unsupported('superclass');
684 684
685 @override 685 @override
686 int get supertypeLoadState => unsupported('supertypeLoadState'); 686 int get supertypeLoadState => unsupported('supertypeLoadState');
687
688 @override
689 dart2js.ConstructorElement lookupDefaultConstructor() => unsupported('lookupDe faultConstructor');
687 } 690 }
688 691
689 class TypedefElementY extends TypeDeclarationElementY 692 class TypedefElementY extends TypeDeclarationElementY
690 implements dart2js.TypedefElement { 693 implements dart2js.TypedefElement {
691 694
692 analyzer.FunctionTypeAliasElement get element => super.element; 695 analyzer.FunctionTypeAliasElement get element => super.element;
693 696
694 dart2js.ElementKind get kind => dart2js.ElementKind.TYPEDEF; 697 dart2js.ElementKind get kind => dart2js.ElementKind.TYPEDEF;
695 698
696 TypedefElementY(ElementConverter converter, 699 TypedefElementY(ElementConverter converter,
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
833 836
834 @override 837 @override
835 get effectiveTarget => unsupported('effectiveTarget'); 838 get effectiveTarget => unsupported('effectiveTarget');
836 839
837 @override 840 @override
838 get immediateRedirectionTarget => unsupported('immediateRedirectionTarget'); 841 get immediateRedirectionTarget => unsupported('immediateRedirectionTarget');
839 842
840 @override 843 @override
841 get nestedClosures => unsupported('nestedClosures'); 844 get nestedClosures => unsupported('nestedClosures');
842 } 845 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698