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

Side by Side Diff: pkg/front_end/test/fasta/rasta/issue_000067.dart.outline.expect

Issue 2736103004: Use correct types on cloned constructors in mixin applications. (Closed)
Patch Set: Update kompile.status. Created 3 years, 9 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 static field dynamic _redirecting# = <dynamic>[self::A::foo];
6 constructor •() → void 7 constructor •() → void
7 ; 8 ;
8 static factory foo() → self::A 9 static factory foo() → self::A
9 invalid-statement; 10 let final dynamic #t1 = self::C::bar in invalid-expression;
10 method m() → core::int 11 method m() → core::int
11 ; 12 ;
12 } 13 }
13 class C extends self::A { 14 class C extends self::A {
15 static field dynamic _redirecting# = <dynamic>[self::C::bar];
14 constructor •() → void 16 constructor •() → void
15 ; 17 ;
16 static factory bar() → self::D 18 static factory bar() → self::D
17 throw "Missing constructor: D"; 19 let final dynamic #t2 = self::D::• in invalid-expression;
18 method m() → core::int 20 method m() → core::int
19 ; 21 ;
20 } 22 }
21 class D extends self::C { 23 class D extends self::C {
22 constructor •() → void 24 constructor •() → void
23 ; 25 ;
24 method m() → core::int 26 method m() → core::int
25 ; 27 ;
26 } 28 }
27 static method main() → dynamic 29 static method main() → dynamic
28 ; 30 ;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698