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

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

Issue 2939533002: Apply transformations after comparing to golden files. (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/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 8c241096b98cc2e9f205a27cf8513ceb6c8f2591..351344d7e6a8de6045f9e6a23e50e74b246540cd 100644
--- a/pkg/front_end/testcases/rasta/issue_000080.dart.direct.expect
+++ b/pkg/front_end/testcases/rasta/issue_000080.dart.direct.expect
@@ -10,22 +10,16 @@ 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;
+abstract class Object&Mixin = core::Object with self::Mixin {
}
class Foo extends self::Object&Mixin {
constructor •() → void
- : super self::Object&Mixin::•()
+ : super core::Object::•()
;
method foo() → dynamic
- return this.{=self::Object&Mixin::foo}();
+ return super.foo();
method bar() → dynamic
- return this.{=self::Object&Mixin::field};
+ return super.{self::Mixin::field};
}
static method main() → dynamic {
dynamic f = new self::Foo::•();

Powered by Google App Engine
This is Rietveld 408576698