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

Side by Side Diff: pkg/front_end/test/fasta/rasta/issue_000026.dart.direct.expect

Issue 2658093007: Update rasta direct expectations. (Closed)
Patch Set: Rebased on 5f1092d494bc8cae2b10917fc41c46764e867923. Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 library; 1 library;
2 import self as self; 2 import self as self;
3 import "dart:core" as core; 3 import "dart:core" as core;
4 4
5 class C extends core::Object { 5 class C extends core::Object {
6 field dynamic a; 6 field dynamic a = null;
7 field dynamic b; 7 field dynamic b = 0;
8 field dynamic c; 8 field dynamic c = 1.+(2);
9 constructor •() → self::C 9 constructor •() → void
10 : self::C::b = 0, self::C::c = 1.+(2), super core::Object::•(); 10 : super core::Object::•()
11 ;
11 } 12 }
12 class D extends core::Object { 13 class D extends core::Object {
13 field dynamic a; 14 field dynamic a = null;
14 field dynamic b; 15 field dynamic b = 1;
15 field dynamic c; 16 field dynamic c = 2.-(3);
16 constructor •() → dynamic 17 constructor •() → void
17 : self::D::b = 1, self::D::c = 2.-(3), super core::Object::•() 18 : super core::Object::•()
18 ; 19 ;
19 } 20 }
20 static method main() → dynamic { 21 static method main() → dynamic {
21 new self::C::•(); 22 new self::C::•();
22 new self::D::•(); 23 new self::D::•();
23 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698