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

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

Issue 2691613002: Improve compile-time error handling. (Closed)
Patch Set: Update status and expectations for rasta tests. 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 A extends core::Object { 5 class A extends core::Object {
6 field core::bool v1; 6 field core::bool v1;
7 field core::num v2; 7 field core::num v2;
8 constructor •(core::bool v1, core::num v2) → dynamic 8 constructor •(core::bool v1, core::num v2) → void
9 : self::A::v1 = v1, self::A::v2 = v2, super core::Object::•() 9 : self::A::v1 = v1, self::A::v2 = v2, super core::Object::•()
10 ; 10 ;
11 } 11 }
12 class M1 extends core::Object { 12 class M1 extends core::Object {
13 field core::num v2; 13 field core::num v2 = 0;
14 constructor •() → self::M1 14 constructor •() → void
15 : self::M1::v2 = 0, super core::Object::•(); 15 : super core::Object::•()
16 ;
16 } 17 }
17 class C extends self::A+M1#0 { 18 class C extends self::A&M1 {
18 constructor •(core::bool v1, core::num v2) → dynamic 19 constructor •(core::bool v1, core::num v2) → void
19 : super self::A+M1#0::•(v1, v2); 20 : super self::A&M1::•(v1, v2)
21 ;
20 } 22 }
21 abstract class A+M1#0 extends self::A implements self::M1 { 23 abstract class A&M1 extends self::A implements self::M1 {
22 field core::num v2; 24 field core::num v2 = 0;
23 constructor •(core::bool v1, core::num v2) → dynamic 25 constructor •(final core::bool v1, final core::num v2) → void
24 : self::A+M1#0::v2 = 0, super self::A::•(v1, v2); 26 : super self::A::•(v1, v2)
27 ;
25 } 28 }
26 static method main() → dynamic { 29 static method main() → dynamic {
27 self::C c = new self::C::•(true, 2); 30 self::C c = new self::C::•(true, 2);
28 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698