| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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.serialization.impact; | 5 library dart2js.serialization.impact; |
| 6 | 6 |
| 7 import '../common.dart'; | |
| 8 import '../common/resolution.dart'; | 7 import '../common/resolution.dart'; |
| 9 import '../constants/expressions.dart'; | 8 import '../constants/expressions.dart'; |
| 10 import '../dart_types.dart'; | 9 import '../dart_types.dart'; |
| 11 import '../elements/elements.dart'; | 10 import '../elements/elements.dart'; |
| 12 import '../universe/selector.dart'; | 11 import '../universe/selector.dart'; |
| 13 import '../universe/use.dart'; | 12 import '../universe/use.dart'; |
| 14 import '../universe/world_impact.dart'; | 13 import '../universe/world_impact.dart'; |
| 15 import '../util/enumset.dart'; | 14 import '../util/enumset.dart'; |
| 16 import 'keys.dart'; | 15 import 'keys.dart'; |
| 17 import 'serialization.dart'; | 16 import 'serialization.dart'; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 constantLiterals: constantLiterals, | 208 constantLiterals: constantLiterals, |
| 210 dynamicUses: dynamicUses, | 209 dynamicUses: dynamicUses, |
| 211 features: features, | 210 features: features, |
| 212 listLiterals: listLiterals, | 211 listLiterals: listLiterals, |
| 213 mapLiterals: mapLiterals, | 212 mapLiterals: mapLiterals, |
| 214 staticUses: staticUses, | 213 staticUses: staticUses, |
| 215 typeUses: typeUses, | 214 typeUses: typeUses, |
| 216 nativeData: nativeData); | 215 nativeData: nativeData); |
| 217 } | 216 } |
| 218 } | 217 } |
| OLD | NEW |