| 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 'dart:collection'; | 5 import 'dart:collection'; |
| 6 | 6 |
| 7 import 'package:js_runtime/shared/embedded_names.dart'; | 7 import 'package:js_runtime/shared/embedded_names.dart'; |
| 8 | 8 |
| 9 import '../closure.dart'; | 9 import '../closure.dart'; |
| 10 import '../common.dart'; | 10 import '../common.dart'; |
| 11 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem; | 11 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem; |
| 12 import '../common/names.dart' show Identifiers, Selectors; | 12 import '../common/names.dart' show Identifiers, Selectors; |
| 13 import '../common/tasks.dart' show CompilerTask; | 13 import '../common/tasks.dart' show CompilerTask; |
| 14 import '../compiler.dart'; | 14 import '../compiler.dart'; |
| 15 import '../constants/constant_system.dart'; | 15 import '../constants/constant_system.dart'; |
| 16 import '../constants/expressions.dart'; | 16 import '../constants/expressions.dart'; |
| 17 import '../constants/values.dart'; | 17 import '../constants/values.dart'; |
| 18 import '../elements/resolution_types.dart'; | |
| 19 import '../elements/types.dart'; | |
| 20 import '../diagnostics/messages.dart' show Message, MessageTemplate; | 18 import '../diagnostics/messages.dart' show Message, MessageTemplate; |
| 21 import '../dump_info.dart' show InfoReporter; | 19 import '../dump_info.dart' show InfoReporter; |
| 22 import '../elements/elements.dart'; | 20 import '../elements/elements.dart'; |
| 23 import '../elements/entities.dart'; | 21 import '../elements/entities.dart'; |
| 24 import '../elements/modelx.dart' show ConstructorBodyElementX; | 22 import '../elements/modelx.dart' show ConstructorBodyElementX; |
| 23 import '../elements/operators.dart'; |
| 24 import '../elements/resolution_types.dart'; |
| 25 import '../elements/types.dart'; |
| 25 import '../io/source_information.dart'; | 26 import '../io/source_information.dart'; |
| 26 import '../js/js.dart' as js; | 27 import '../js/js.dart' as js; |
| 27 import '../js_backend/backend.dart' show JavaScriptBackend; | 28 import '../js_backend/backend.dart' show JavaScriptBackend; |
| 28 import '../js_backend/js_backend.dart'; | 29 import '../js_backend/js_backend.dart'; |
| 29 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter; | 30 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter; |
| 30 import '../native/native.dart' as native; | 31 import '../native/native.dart' as native; |
| 31 import '../resolution/operators.dart'; | |
| 32 import '../resolution/semantic_visitor.dart'; | 32 import '../resolution/semantic_visitor.dart'; |
| 33 import '../resolution/tree_elements.dart' show TreeElements; | 33 import '../resolution/tree_elements.dart' show TreeElements; |
| 34 import '../tree/tree.dart' as ast; | 34 import '../tree/tree.dart' as ast; |
| 35 import '../types/types.dart'; | 35 import '../types/types.dart'; |
| 36 import '../universe/call_structure.dart' show CallStructure; | 36 import '../universe/call_structure.dart' show CallStructure; |
| 37 import '../universe/selector.dart' show Selector; | 37 import '../universe/selector.dart' show Selector; |
| 38 import '../universe/side_effects.dart' show SideEffects; | 38 import '../universe/side_effects.dart' show SideEffects; |
| 39 import '../universe/use.dart' show ConstantUse, DynamicUse, StaticUse; | 39 import '../universe/use.dart' show ConstantUse, DynamicUse, StaticUse; |
| 40 import '../util/util.dart'; | 40 import '../util/util.dart'; |
| 41 import '../world.dart' show ClosedWorld; | 41 import '../world.dart' show ClosedWorld; |
| (...skipping 6700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6742 this.oldReturnLocal, | 6742 this.oldReturnLocal, |
| 6743 this.oldReturnType, | 6743 this.oldReturnType, |
| 6744 this.oldResolvedAst, | 6744 this.oldResolvedAst, |
| 6745 this.oldStack, | 6745 this.oldStack, |
| 6746 this.oldLocalsHandler, | 6746 this.oldLocalsHandler, |
| 6747 this.inTryStatement, | 6747 this.inTryStatement, |
| 6748 this.allFunctionsCalledOnce, | 6748 this.allFunctionsCalledOnce, |
| 6749 this.oldElementInferenceResults) | 6749 this.oldElementInferenceResults) |
| 6750 : super(function); | 6750 : super(function); |
| 6751 } | 6751 } |
| OLD | NEW |