| 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 import 'package:kernel/ast.dart' as ir; | 5 import 'package:kernel/ast.dart' as ir; |
| 6 | 6 |
| 7 import "../dart_types.dart" show DartType, InterfaceType; | 7 import "../elements/resolution_types.dart" show DartType, InterfaceType; |
| 8 import "../elements/elements.dart" | 8 import "../elements/elements.dart" |
| 9 show | 9 show |
| 10 AstElement, | 10 AstElement, |
| 11 ConstructorElement, | 11 ConstructorElement, |
| 12 Element, | 12 Element, |
| 13 ErroneousElement, | 13 ErroneousElement, |
| 14 FunctionElement, | 14 FunctionElement, |
| 15 MethodElement; | 15 MethodElement; |
| 16 import "../resolution/operators.dart" | 16 import "../resolution/operators.dart" |
| 17 show AssignmentOperator, BinaryOperator, IncDecOperator, UnaryOperator; | 17 show AssignmentOperator, BinaryOperator, IncDecOperator, UnaryOperator; |
| (...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 return buildUnresolvedSuperIndexAccessor(index, element) | 566 return buildUnresolvedSuperIndexAccessor(index, element) |
| 567 .buildNullAwareAssignment(visitForValue(rhs), null); | 567 .buildNullAwareAssignment(visitForValue(rhs), null); |
| 568 } | 568 } |
| 569 | 569 |
| 570 ir.Expression visitUnresolvedSuperSet( | 570 ir.Expression visitUnresolvedSuperSet( |
| 571 Send node, Element element, Node rhs, _) { | 571 Send node, Element element, Node rhs, _) { |
| 572 return buildThrowUnresolvedSuperSetter( | 572 return buildThrowUnresolvedSuperSetter( |
| 573 '${node.selector}', visitForValue(rhs)); | 573 '${node.selector}', visitForValue(rhs)); |
| 574 } | 574 } |
| 575 } | 575 } |
| OLD | NEW |