| 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.js_helpers.impact; | 5 library dart2js.js_helpers.impact; |
| 6 | 6 |
| 7 import '../common/names.dart' show | |
| 8 Identifiers; | |
| 9 import '../compiler.dart' show | 7 import '../compiler.dart' show |
| 10 Compiler; | 8 Compiler; |
| 11 import '../core_types.dart' show | 9 import '../core_types.dart' show |
| 12 CoreClasses; | 10 CoreClasses; |
| 13 import '../dart_types.dart' show | 11 import '../dart_types.dart' show |
| 14 InterfaceType; | 12 InterfaceType; |
| 15 import '../elements/elements.dart' show | 13 import '../elements/elements.dart' show |
| 16 ClassElement, | 14 ClassElement, |
| 17 Element; | 15 Element; |
| 18 | 16 |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 | 644 |
| 647 BackendImpact get closure { | 645 BackendImpact get closure { |
| 648 if (_closure == null) { | 646 if (_closure == null) { |
| 649 _closure = new BackendImpact( | 647 _closure = new BackendImpact( |
| 650 instantiatedClasses: [ | 648 instantiatedClasses: [ |
| 651 coreClasses.functionClass]); | 649 coreClasses.functionClass]); |
| 652 } | 650 } |
| 653 return _closure; | 651 return _closure; |
| 654 } | 652 } |
| 655 } | 653 } |
| OLD | NEW |