Index: pkg/compiler/lib/src/resolution/semantic_visitor.dart |
diff --git a/pkg/compiler/lib/src/resolution/semantic_visitor.dart b/pkg/compiler/lib/src/resolution/semantic_visitor.dart |
index cb391a359987045f81fc077b1f7b652caad1134c..e28d3e1fda697bd0de62e3779686d8c12ea63590 100644 |
--- a/pkg/compiler/lib/src/resolution/semantic_visitor.dart |
+++ b/pkg/compiler/lib/src/resolution/semantic_visitor.dart |
@@ -4336,6 +4336,21 @@ abstract class SemanticSendVisitor<R, A> { |
Node rhs, |
A arg); |
+ /// Assignment of [rhs] to the unresolved super [element]. |
+ /// |
+ /// For instance: |
+ /// |
+ /// class B {} |
+ /// class C { |
+ /// m() => super.foo = 42; |
+ /// } |
+ /// |
+ R visitUnresolvedSuperSet( |
+ Send node, |
+ Element element, |
+ Node rhs, |
+ A arg); |
+ |
/// Invocation of the unresolved [element] with [arguments]. |
/// |
/// For instance: |