Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: pkg/compiler/lib/src/resolution/semantic_visitor.dart

Issue 1678053002: Fix super noSuchMethod handling. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fix. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:

Powered by Google App Engine
This is Rietveld 408576698