| 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 | 7 import '../common/names.dart' show |
| 8 Identifiers; | 8 Identifiers; |
| 9 import '../compiler.dart' show | 9 import '../compiler.dart' show |
| 10 Compiler; | 10 Compiler; |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 BackendImpact _closure; | 645 BackendImpact _closure; |
| 646 | 646 |
| 647 BackendImpact get closure { | 647 BackendImpact get closure { |
| 648 if (_closure == null) { | 648 if (_closure == null) { |
| 649 _closure = new BackendImpact( | 649 _closure = new BackendImpact( |
| 650 instantiatedClasses: [ | 650 instantiatedClasses: [ |
| 651 coreClasses.functionClass]); | 651 coreClasses.functionClass]); |
| 652 } | 652 } |
| 653 return _closure; | 653 return _closure; |
| 654 } | 654 } |
| 655 } | 655 } |
| OLD | NEW |