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

Unified Diff: pkg/front_end/test/fasta/rasta/issue_000012.dart.direct.expect

Issue 2658093007: Update rasta direct expectations. (Closed)
Patch Set: Rebased on 5f1092d494bc8cae2b10917fc41c46764e867923. Created 3 years, 11 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/test/fasta/rasta/issue_000012.dart.direct.expect
diff --git a/pkg/front_end/test/fasta/rasta/issue_000012.dart.direct.expect b/pkg/front_end/test/fasta/rasta/issue_000012.dart.direct.expect
index 57f70750b3b43683990e10f18a27de5327080d80..db0b7d9e3e9ab8548b79ed13a64e681123584692 100644
--- a/pkg/front_end/test/fasta/rasta/issue_000012.dart.direct.expect
+++ b/pkg/front_end/test/fasta/rasta/issue_000012.dart.direct.expect
@@ -3,15 +3,17 @@ import self as self;
import "dart:core" as core;
class A extends core::Object {
- field dynamic field;
- constructor •() → self::A
- : super core::Object::•();
+ field dynamic field = null;
+ constructor •() → void
+ : super core::Object::•()
+ ;
}
class B extends self::A {
- constructor •() → self::B
- : super self::A::•();
+ constructor •() → void
+ : super self::A::•()
+ ;
method m() → dynamic {
- super.{self::A::field} = 42;
+ this.{=self::A::field} = 42;
}
}
static method main() → dynamic {

Powered by Google App Engine
This is Rietveld 408576698