| 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/resolution.dart'; | 7 import '../common/resolution.dart'; |
| 8 import '../constants/expressions.dart'; | 8 import '../constants/expressions.dart'; |
| 9 import '../dart_types.dart'; | 9 import '../elements/resolution_types.dart'; |
| 10 import '../elements/elements.dart'; | 10 import '../elements/elements.dart'; |
| 11 import '../universe/selector.dart'; | 11 import '../universe/selector.dart'; |
| 12 import '../universe/feature.dart'; | 12 import '../universe/feature.dart'; |
| 13 import '../universe/use.dart'; | 13 import '../universe/use.dart'; |
| 14 import '../universe/world_impact.dart'; | 14 import '../universe/world_impact.dart'; |
| 15 import '../util/enumset.dart'; | 15 import '../util/enumset.dart'; |
| 16 import 'keys.dart'; | 16 import 'keys.dart'; |
| 17 import 'serialization.dart'; | 17 import 'serialization.dart'; |
| 18 import 'serialization_util.dart'; | 18 import 'serialization_util.dart'; |
| 19 | 19 |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 constantLiterals: constantLiterals, | 216 constantLiterals: constantLiterals, |
| 217 dynamicUses: dynamicUses, | 217 dynamicUses: dynamicUses, |
| 218 features: features, | 218 features: features, |
| 219 listLiterals: listLiterals, | 219 listLiterals: listLiterals, |
| 220 mapLiterals: mapLiterals, | 220 mapLiterals: mapLiterals, |
| 221 staticUses: staticUses, | 221 staticUses: staticUses, |
| 222 typeUses: typeUses, | 222 typeUses: typeUses, |
| 223 nativeData: nativeData); | 223 nativeData: nativeData); |
| 224 } | 224 } |
| 225 } | 225 } |
| OLD | NEW |