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

Unified Diff: pkg/front_end/testcases/rasta/issue_000007.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_000007.dart.direct.expect
diff --git a/pkg/front_end/testcases/rasta/issue_000007.dart.direct.expect b/pkg/front_end/testcases/rasta/issue_000007.dart.direct.expect
index dc735b036e9f60cad4589e0374ef1adbd3b705e7..8116f3fa5b4880dedf59cf82ef2c75c5cf15ba96 100644
--- a/pkg/front_end/testcases/rasta/issue_000007.dart.direct.expect
+++ b/pkg/front_end/testcases/rasta/issue_000007.dart.direct.expect
@@ -14,11 +14,6 @@ class Mixin extends core::Object {
method foo() → dynamic
return core::print("foo");
}
-class Sub extends self::Base&Mixin {
- constructor •() → void
- : super self::Base&Mixin::•()
- ;
-}
abstract class Base&Mixin extends self::Base implements self::Mixin {
constructor •() → void
: super self::Base::•()
@@ -26,6 +21,11 @@ abstract class Base&Mixin extends self::Base implements self::Mixin {
method foo() → dynamic
return core::print("foo");
}
+class Sub extends self::Base&Mixin {
+ constructor •() → void
+ : super self::Base&Mixin::•()
+ ;
+}
static method main() → dynamic {
new self::Sub::•().foo();
}

Powered by Google App Engine
This is Rietveld 408576698