| 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; | 11 import '../common/codegen.dart' show CodegenRegistry; |
| 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 '../diagnostics/messages.dart' show Message, MessageTemplate; | 18 import '../diagnostics/messages.dart' show Message, MessageTemplate; |
| 19 import '../dump_info.dart' show InfoReporter; | 19 import '../dump_info.dart' show InfoReporter; |
| 20 import '../elements/elements.dart'; | 20 import '../elements/elements.dart'; |
| 21 import '../elements/entities.dart'; | 21 import '../elements/entities.dart'; |
| 22 import '../elements/jumps.dart'; |
| 22 import '../elements/modelx.dart' show ConstructorBodyElementX; | 23 import '../elements/modelx.dart' show ConstructorBodyElementX; |
| 23 import '../elements/names.dart'; | 24 import '../elements/names.dart'; |
| 24 import '../elements/operators.dart'; | 25 import '../elements/operators.dart'; |
| 25 import '../elements/resolution_types.dart'; | 26 import '../elements/resolution_types.dart'; |
| 26 import '../elements/types.dart'; | 27 import '../elements/types.dart'; |
| 27 import '../io/source_information.dart'; | 28 import '../io/source_information.dart'; |
| 28 import '../js/js.dart' as js; | 29 import '../js/js.dart' as js; |
| 29 import '../js_backend/backend.dart' show JavaScriptBackend; | 30 import '../js_backend/backend.dart' show JavaScriptBackend; |
| 30 import '../js_backend/element_strategy.dart' show ElementCodegenWorkItem; | 31 import '../js_backend/element_strategy.dart' show ElementCodegenWorkItem; |
| 31 import '../js_backend/runtime_types.dart'; | 32 import '../js_backend/runtime_types.dart'; |
| (...skipping 6806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6838 this.oldReturnLocal, | 6839 this.oldReturnLocal, |
| 6839 this.oldReturnType, | 6840 this.oldReturnType, |
| 6840 this.oldResolvedAst, | 6841 this.oldResolvedAst, |
| 6841 this.oldStack, | 6842 this.oldStack, |
| 6842 this.oldLocalsHandler, | 6843 this.oldLocalsHandler, |
| 6843 this.inTryStatement, | 6844 this.inTryStatement, |
| 6844 this.allFunctionsCalledOnce, | 6845 this.allFunctionsCalledOnce, |
| 6845 this.oldElementInferenceResults) | 6846 this.oldElementInferenceResults) |
| 6846 : super(function); | 6847 : super(function); |
| 6847 } | 6848 } |
| OLD | NEW |