| 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 '../common.dart'; | 5 import '../common.dart'; |
| 6 import '../common/names.dart'; | 6 import '../common/names.dart'; |
| 7 import '../compiler.dart'; | 7 import '../compiler.dart'; |
| 8 import '../constants/expressions.dart'; | 8 import '../constants/expressions.dart'; |
| 9 import '../constants/values.dart'; | 9 import '../constants/values.dart'; |
| 10 import '../core_types.dart'; | 10 import '../core_types.dart'; |
| 11 import '../elements/elements.dart'; | 11 import '../elements/elements.dart'; |
| 12 import '../elements/entities.dart'; |
| 12 import '../js_backend/js_backend.dart'; | 13 import '../js_backend/js_backend.dart'; |
| 13 import '../native/behavior.dart' as native; | 14 import '../native/behavior.dart' as native; |
| 14 import '../resolution/tree_elements.dart'; | 15 import '../resolution/tree_elements.dart'; |
| 15 import '../tree/nodes.dart' as ast; | 16 import '../tree/nodes.dart' as ast; |
| 16 import '../types/constants.dart'; | 17 import '../types/constants.dart'; |
| 17 import '../types/types.dart'; | 18 import '../types/types.dart'; |
| 18 import '../universe/call_structure.dart'; | 19 import '../universe/call_structure.dart'; |
| 19 import '../universe/selector.dart'; | 20 import '../universe/selector.dart'; |
| 20 import '../universe/side_effects.dart'; | 21 import '../universe/side_effects.dart'; |
| 21 import '../util/util.dart'; | 22 import '../util/util.dart'; |
| (...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 /** | 1043 /** |
| 1043 * Records that the captured variable [local] is read. | 1044 * Records that the captured variable [local] is read. |
| 1044 */ | 1045 */ |
| 1045 void recordCapturedLocalRead(Local local) {} | 1046 void recordCapturedLocalRead(Local local) {} |
| 1046 | 1047 |
| 1047 /** | 1048 /** |
| 1048 * Records that the variable [local] is being updated. | 1049 * Records that the variable [local] is being updated. |
| 1049 */ | 1050 */ |
| 1050 void recordLocalUpdate(Local local, TypeInformation type) {} | 1051 void recordLocalUpdate(Local local, TypeInformation type) {} |
| 1051 } | 1052 } |
| OLD | NEW |