| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem; | 5 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem; |
| 6 import '../common/names.dart' show Selectors; | 6 import '../common/names.dart' show Selectors; |
| 7 import '../common/tasks.dart' show CompilerTask; | 7 import '../common/tasks.dart' show CompilerTask; |
| 8 import '../compiler.dart' show Compiler; | 8 import '../compiler.dart' show Compiler; |
| 9 import '../constants/constant_system.dart'; | 9 import '../constants/constant_system.dart'; |
| 10 import '../constants/values.dart'; | 10 import '../constants/values.dart'; |
| 11 import '../common_elements.dart' show CommonElements; | 11 import '../common_elements.dart' show CommonElements; |
| 12 import '../elements/elements.dart' | 12 import '../elements/elements.dart' |
| 13 show ClassElement, FieldElement, MethodElement; | 13 show ClassElement, FieldElement, MethodElement; |
| 14 import '../elements/entities.dart'; | 14 import '../elements/entities.dart'; |
| 15 import '../elements/resolution_types.dart'; | 15 import '../elements/resolution_types.dart'; |
| 16 import '../js/js.dart' as js; | 16 import '../js/js.dart' as js; |
| 17 import '../js_backend/js_backend.dart'; | 17 import '../js_backend/backend.dart'; |
| 18 import '../js_backend/native_data.dart' show NativeData; | 18 import '../js_backend/native_data.dart' show NativeData; |
| 19 import '../js_backend/runtime_types.dart'; |
| 19 import '../native/native.dart' as native; | 20 import '../native/native.dart' as native; |
| 20 import '../options.dart'; | 21 import '../options.dart'; |
| 21 import '../types/types.dart'; | 22 import '../types/types.dart'; |
| 22 import '../universe/selector.dart' show Selector; | 23 import '../universe/selector.dart' show Selector; |
| 23 import '../universe/side_effects.dart' show SideEffects; | 24 import '../universe/side_effects.dart' show SideEffects; |
| 24 import '../util/util.dart'; | 25 import '../util/util.dart'; |
| 25 import '../world.dart' show ClosedWorld; | 26 import '../world.dart' show ClosedWorld; |
| 26 import 'interceptor_simplifier.dart'; | 27 import 'interceptor_simplifier.dart'; |
| 27 import 'nodes.dart'; | 28 import 'nodes.dart'; |
| 28 import 'types.dart'; | 29 import 'types.dart'; |
| (...skipping 2957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2986 | 2987 |
| 2987 keyedValues.forEach((receiver, values) { | 2988 keyedValues.forEach((receiver, values) { |
| 2988 result.keyedValues[receiver] = | 2989 result.keyedValues[receiver] = |
| 2989 new Map<HInstruction, HInstruction>.from(values); | 2990 new Map<HInstruction, HInstruction>.from(values); |
| 2990 }); | 2991 }); |
| 2991 | 2992 |
| 2992 result.nonEscapingReceivers.addAll(nonEscapingReceivers); | 2993 result.nonEscapingReceivers.addAll(nonEscapingReceivers); |
| 2993 return result; | 2994 return result; |
| 2994 } | 2995 } |
| 2995 } | 2996 } |
| OLD | NEW |