| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |