| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 '../common.dart'; | 7 import '../common.dart'; |
| 8 import '../common/names.dart'; | 8 import '../common/names.dart'; |
| 9 import '../compiler.dart'; | 9 import '../compiler.dart'; |
| 10 import '../constants/expressions.dart'; | 10 import '../constants/expressions.dart'; |
| 11 import '../constants/values.dart'; | 11 import '../constants/values.dart'; |
| 12 import '../common_elements.dart'; | 12 import '../common_elements.dart'; |
| 13 import '../elements/elements.dart'; | 13 import '../elements/elements.dart'; |
| 14 import '../elements/entities.dart'; | 14 import '../elements/entities.dart'; |
| 15 import '../elements/names.dart'; |
| 15 import '../js_backend/annotations.dart'; | 16 import '../js_backend/annotations.dart'; |
| 16 import '../js_backend/js_backend.dart'; | 17 import '../js_backend/js_backend.dart'; |
| 17 import '../native/behavior.dart' as native; | 18 import '../native/behavior.dart' as native; |
| 18 import '../resolution/tree_elements.dart'; | 19 import '../resolution/tree_elements.dart'; |
| 19 import '../tree/nodes.dart' as ast; | 20 import '../tree/nodes.dart' as ast; |
| 20 import '../types/constants.dart'; | 21 import '../types/constants.dart'; |
| 21 import '../types/types.dart'; | 22 import '../types/types.dart'; |
| 22 import '../universe/call_structure.dart'; | 23 import '../universe/call_structure.dart'; |
| 23 import '../universe/selector.dart'; | 24 import '../universe/selector.dart'; |
| 24 import '../universe/side_effects.dart'; | 25 import '../universe/side_effects.dart'; |
| (...skipping 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1086 /** | 1087 /** |
| 1087 * Records that the captured variable [local] is read. | 1088 * Records that the captured variable [local] is read. |
| 1088 */ | 1089 */ |
| 1089 void recordCapturedLocalRead(Local local) {} | 1090 void recordCapturedLocalRead(Local local) {} |
| 1090 | 1091 |
| 1091 /** | 1092 /** |
| 1092 * Records that the variable [local] is being updated. | 1093 * Records that the variable [local] is being updated. |
| 1093 */ | 1094 */ |
| 1094 void recordLocalUpdate(Local local, TypeInformation type) {} | 1095 void recordLocalUpdate(Local local, TypeInformation type) {} |
| 1095 } | 1096 } |
| OLD | NEW |