| 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 import 'package:kernel/ast.dart' as ir; | 5 import 'package:kernel/ast.dart' as ir; |
| 6 | 6 |
| 7 import '../closure.dart'; | 7 import '../closure.dart'; |
| 8 import '../common.dart'; | 8 import '../common.dart'; |
| 9 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem; | 9 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem; |
| 10 import '../common/names.dart'; | 10 import '../common/names.dart'; |
| 11 import '../common/tasks.dart' show CompilerTask; | 11 import '../common/tasks.dart' show CompilerTask; |
| 12 import '../compiler.dart'; | 12 import '../compiler.dart'; |
| 13 import '../constants/values.dart' | 13 import '../constants/values.dart' |
| 14 show | 14 show |
| 15 ConstantValue, | 15 ConstantValue, |
| 16 InterceptorConstantValue, | 16 InterceptorConstantValue, |
| 17 StringConstantValue, | 17 StringConstantValue, |
| 18 TypeConstantValue; | 18 TypeConstantValue; |
| 19 import '../elements/elements.dart'; |
| 20 import '../elements/entities.dart'; |
| 19 import '../elements/resolution_types.dart'; | 21 import '../elements/resolution_types.dart'; |
| 20 import '../elements/elements.dart'; | |
| 21 import '../elements/entities.dart' show MemberEntity; | |
| 22 import '../io/source_information.dart'; | 22 import '../io/source_information.dart'; |
| 23 import '../js/js.dart' as js; | 23 import '../js/js.dart' as js; |
| 24 import '../js_backend/backend.dart' show JavaScriptBackend; | 24 import '../js_backend/backend.dart' show JavaScriptBackend; |
| 25 import '../kernel/kernel.dart'; | 25 import '../kernel/kernel.dart'; |
| 26 import '../native/native.dart' as native; | 26 import '../native/native.dart' as native; |
| 27 import '../resolution/tree_elements.dart'; | 27 import '../resolution/tree_elements.dart'; |
| 28 import '../tree/dartstring.dart'; | 28 import '../tree/dartstring.dart'; |
| 29 import '../tree/nodes.dart' show Node, BreakStatement; | 29 import '../tree/nodes.dart' show Node, BreakStatement; |
| 30 import '../types/masks.dart'; | 30 import '../types/masks.dart'; |
| 31 import '../universe/call_structure.dart' show CallStructure; | 31 import '../universe/call_structure.dart' show CallStructure; |
| (...skipping 3058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3090 enterBlock.setBlockFlow( | 3090 enterBlock.setBlockFlow( |
| 3091 new HTryBlockInformation( | 3091 new HTryBlockInformation( |
| 3092 kernelBuilder.wrapStatementGraph(bodyGraph), | 3092 kernelBuilder.wrapStatementGraph(bodyGraph), |
| 3093 exception, | 3093 exception, |
| 3094 kernelBuilder.wrapStatementGraph(catchGraph), | 3094 kernelBuilder.wrapStatementGraph(catchGraph), |
| 3095 kernelBuilder.wrapStatementGraph(finallyGraph)), | 3095 kernelBuilder.wrapStatementGraph(finallyGraph)), |
| 3096 exitBlock); | 3096 exitBlock); |
| 3097 kernelBuilder.inTryStatement = previouslyInTryStatement; | 3097 kernelBuilder.inTryStatement = previouslyInTryStatement; |
| 3098 } | 3098 } |
| 3099 } | 3099 } |
| OLD | NEW |