| 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 '../dart_types.dart'; | 19 import '../elements/resolution_types.dart'; |
| 20 import '../elements/elements.dart'; | 20 import '../elements/elements.dart'; |
| 21 import '../io/source_information.dart'; | 21 import '../io/source_information.dart'; |
| 22 import '../js/js.dart' as js; | 22 import '../js/js.dart' as js; |
| 23 import '../js_backend/backend.dart' show JavaScriptBackend; | 23 import '../js_backend/backend.dart' show JavaScriptBackend; |
| 24 import '../kernel/kernel.dart'; | 24 import '../kernel/kernel.dart'; |
| 25 import '../native/native.dart' as native; | 25 import '../native/native.dart' as native; |
| 26 import '../resolution/tree_elements.dart'; | 26 import '../resolution/tree_elements.dart'; |
| 27 import '../tree/dartstring.dart'; | 27 import '../tree/dartstring.dart'; |
| 28 import '../tree/nodes.dart' show Node, BreakStatement; | 28 import '../tree/nodes.dart' show Node, BreakStatement; |
| 29 import '../types/masks.dart'; | 29 import '../types/masks.dart'; |
| (...skipping 2249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2279 kernelBuilder.open(exitBlock); | 2279 kernelBuilder.open(exitBlock); |
| 2280 enterBlock.setBlockFlow( | 2280 enterBlock.setBlockFlow( |
| 2281 new HTryBlockInformation( | 2281 new HTryBlockInformation( |
| 2282 kernelBuilder.wrapStatementGraph(bodyGraph), | 2282 kernelBuilder.wrapStatementGraph(bodyGraph), |
| 2283 exception, | 2283 exception, |
| 2284 kernelBuilder.wrapStatementGraph(catchGraph), | 2284 kernelBuilder.wrapStatementGraph(catchGraph), |
| 2285 kernelBuilder.wrapStatementGraph(finallyGraph)), | 2285 kernelBuilder.wrapStatementGraph(finallyGraph)), |
| 2286 exitBlock); | 2286 exitBlock); |
| 2287 } | 2287 } |
| 2288 } | 2288 } |
| OLD | NEW |