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

Side by Side Diff: pkg/compiler/lib/src/universe/world_impact.dart

Issue 1762723002: Cleanup 1: split parts into their own libraries, remove unused imports (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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.universe.world_impact; 5 library dart2js.universe.world_impact;
6 6
7 import '../dart_types.dart' show
8 DartType,
9 InterfaceType;
10 import '../elements/elements.dart' show 7 import '../elements/elements.dart' show
11 Element, 8 Element,
12 LocalFunctionElement, 9 LocalFunctionElement,
13 MethodElement; 10 MethodElement;
14 import '../util/util.dart' show 11 import '../util/util.dart' show
15 Setlet; 12 Setlet;
16 13
17 import 'use.dart' show 14 import 'use.dart' show
18 DynamicUse, 15 DynamicUse,
19 StaticUse, 16 StaticUse,
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 } 238 }
242 239
243 @override 240 @override
244 void visitTypeUse(TypeUse use) { 241 void visitTypeUse(TypeUse use) {
245 if (_visitTypeUse != null) { 242 if (_visitTypeUse != null) {
246 _visitTypeUse(use); 243 _visitTypeUse(use);
247 } 244 }
248 } 245 }
249 } 246 }
250 247
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698