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: pkg/compiler/lib/src/resolution/class_members.dart

Issue 2223133003: pkg/compiler: clean up imports (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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
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 dart2js.resolution.compute_members; 5 library dart2js.resolution.compute_members;
6 6
7 import '../common.dart'; 7 import '../common.dart';
8 import '../common/names.dart' show Identifiers, Names; 8 import '../common/names.dart' show Identifiers, Names;
9 import '../common/resolution.dart' show Resolution; 9 import '../common/resolution.dart' show Resolution;
10 import '../compiler.dart' show Compiler;
11 import '../dart_types.dart'; 10 import '../dart_types.dart';
12 import '../elements/elements.dart' 11 import '../elements/elements.dart'
13 show 12 show
14 ClassElement, 13 ClassElement,
15 Element, 14 Element,
16 LibraryElement, 15 LibraryElement,
17 Member, 16 Member,
18 MemberElement, 17 MemberElement,
19 MemberSignature, 18 MemberSignature,
20 MixinApplicationElement, 19 MixinApplicationElement,
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
952 message: "Members have not been fully computed for $this.")); 951 message: "Members have not been fully computed for $this."));
953 if (interfaceMembersAreClassMembers) { 952 if (interfaceMembersAreClassMembers) {
954 classMembers.forEach((_, member) { 953 classMembers.forEach((_, member) {
955 if (!member.isStatic) f(member); 954 if (!member.isStatic) f(member);
956 }); 955 });
957 } else { 956 } else {
958 interfaceMembers.forEach((_, member) => f(member)); 957 interfaceMembers.forEach((_, member) => f(member));
959 } 958 }
960 } 959 }
961 } 960 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/class_hierarchy.dart ('k') | pkg/compiler/lib/src/resolution/members.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698