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

Unified Diff: pkg/front_end/testcases/super_rasta_copy.dart.direct.expect

Issue 2954403002: Add type inference for super method invocations. (Closed)
Patch Set: Created 3 years, 6 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/front_end/testcases/super_rasta_copy.dart.direct.expect
diff --git a/pkg/front_end/testcases/super_rasta_copy.dart.direct.expect b/pkg/front_end/testcases/super_rasta_copy.dart.direct.expect
index a8ef6d4c84d596766a21f9867ca862fc9f0b0474..e5af49afcbd9c2b3c5fbe676b3b66c01ed2b202a 100644
--- a/pkg/front_end/testcases/super_rasta_copy.dart.direct.expect
+++ b/pkg/front_end/testcases/super_rasta_copy.dart.direct.expect
@@ -45,14 +45,14 @@ class C extends self::B {
: super self::B::•()
;
method test() → dynamic {
- super.~();
- self::use(super.~());
- super.unary-();
- self::use(super.unary-());
- super.==(87);
- self::use(super.==(87));
- !super.==(87);
- self::use(!super.==(87));
+ super.{self::A::~}();
+ self::use(super.{self::A::~}());
+ super.{self::A::unary-}();
+ self::use(super.{self::A::unary-}());
+ super.{self::A::==}(87);
+ self::use(super.{self::A::==}(87));
+ !super.{self::A::==}(87);
+ self::use(!super.{self::A::==}(87));
super.{self::A::a};
self::use(super.{self::A::a});
super.{self::B::b};
@@ -139,10 +139,10 @@ class C extends self::B {
self::use(super.{self::A::i}.call());
super.{self::A::[]}(87).call();
self::use(super.{self::A::[]}(87).call());
- super.m();
- self::use(super.m());
- super.m(87);
- self::use(super.m(87));
+ super.{self::A::m}();
+ self::use(super.{self::A::m}());
+ super.{self::A::m}(87);
+ self::use(super.{self::A::m}(87));
super.a = 42;
self::use(super.a = 42);
super.b = 42;

Powered by Google App Engine
This is Rietveld 408576698