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

Unified Diff: pkg/front_end/testcases/rasta/issue_000080.dart.direct.expect

Issue 2862223002: Rewrite mixin application handling in Fasta. (Closed)
Patch Set: Update status file. Created 3 years, 7 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/rasta/issue_000080.dart.direct.expect
diff --git a/pkg/front_end/testcases/rasta/issue_000080.dart.direct.expect b/pkg/front_end/testcases/rasta/issue_000080.dart.direct.expect
index 48863d761d6c12747854c7cb77f0bceb9715091e..8c241096b98cc2e9f205a27cf8513ceb6c8f2591 100644
--- a/pkg/front_end/testcases/rasta/issue_000080.dart.direct.expect
+++ b/pkg/front_end/testcases/rasta/issue_000080.dart.direct.expect
@@ -10,6 +10,14 @@ class Mixin extends core::Object {
method foo() → dynamic
return 87;
}
+abstract class Object&Mixin extends core::Object implements self::Mixin {
+ field dynamic field = null;
+ constructor •() → void
+ : super core::Object::•()
+ ;
+ method foo() → dynamic
+ return 87;
+}
class Foo extends self::Object&Mixin {
constructor •() → void
: super self::Object&Mixin::•()
@@ -19,14 +27,6 @@ class Foo extends self::Object&Mixin {
method bar() → dynamic
return this.{=self::Object&Mixin::field};
}
-abstract class Object&Mixin extends core::Object implements self::Mixin {
- field dynamic field = null;
- constructor •() → void
- : super core::Object::•()
- ;
- method foo() → dynamic
- return 87;
-}
static method main() → dynamic {
dynamic f = new self::Foo::•();
f.field = 42;

Powered by Google App Engine
This is Rietveld 408576698