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

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

Issue 2689303003: Implement type variables in mixin applications. (Closed)
Patch Set: Address comments. 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
« no previous file with comments | « pkg/front_end/test/fasta/mixin.dart.direct.expect ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 B extends self::Object&M1&M2 {
6 constructor •(dynamic value) → void
7 ;
8 }
5 abstract class M1 extends core::Object { 9 abstract class M1 extends core::Object {
6 constructor •() → void 10 constructor •() → void
7 ; 11 ;
8 method m() → dynamic 12 method m() → dynamic
9 ; 13 ;
10 } 14 }
11 abstract class M2 extends core::Object { 15 abstract class M2 extends core::Object {
12 constructor •() → void 16 constructor •() → void
13 ; 17 ;
14 method m() → dynamic 18 method m() → dynamic
15 ; 19 ;
16 } 20 }
17 class C extends self::Object&M1&M2 { 21 class C extends self::Object&M1&M2 {
22 constructor •(dynamic value) → void
23 ;
24 }
25 abstract class G1<T extends core::Object> extends core::Object {
26 constructor •() → void
27 ;
28 method m() → dynamic
29 ;
30 }
31 class D<S extends core::Object> extends self::D^G1<self::D::S> {
18 constructor •() → void 32 constructor •() → void
19 ; 33 ;
20 } 34 }
21 abstract class Object&M1 = core::Object with self::M1 { 35 abstract class Object&M1 = core::Object with self::M1 {
22 } 36 }
23 abstract class Object&M1&M2 = self::Object&M1 with self::M2 { 37 abstract class Object&M1&M2 = self::Object&M1 with self::M2 {
24 } 38 }
39 abstract class Object&M1 = core::Object with self::M1 {
40 }
41 abstract class Object&M1&M2 = self::Object&M1 with self::M2 {
42 }
43 abstract class D^G1<S extends core::Object> = core::Object with self::G1<self::D ^G1::S> {
44 }
25 static method main() → dynamic 45 static method main() → dynamic
26 ; 46 ;
OLDNEW
« no previous file with comments | « pkg/front_end/test/fasta/mixin.dart.direct.expect ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698