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

Side by Side Diff: pkg/front_end/testcases/rasta/super_mixin.dart.outline.expect

Issue 3004703002: Don't export unnamed mixins. (Closed)
Patch Set: Update transitive_mixins.dart.shaker Created 3 years, 3 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 import "./mixin_library.dart" as mix; 4 import "./mixin_library.dart" as mix;
5 5
6 class Super<S extends core::Object> extends core::Object { 6 class Super<S extends core::Object> extends core::Object {
7 constructor •() → void 7 default constructor •() → void
8 ; 8 ;
9 method foo() → dynamic 9 method foo() → dynamic
10 ; 10 ;
11 method f() → dynamic 11 method f() → dynamic
12 ; 12 ;
13 } 13 }
14 class C<V extends core::Object> extends self::Super+Mixin#3<self::C::V, self::C: :V> { 14 abstract class _Super&Mixin^#T0^#T0<#T0 extends core::Object> = self::Super<self ::_Super&Mixin^#T0^#T0::#T0> with mix::Mixin<self::_Super&Mixin^#T0^#T0::#T0> {
15 constructor •() → void 15 }
16 class C<V extends core::Object> extends self::_Super&Mixin^#T0^#T0<self::C::V> {
17 default constructor •() → void
16 ; 18 ;
17 } 19 }
18 class D extends self::Super+Mixin#2<dynamic> { 20 abstract class _Super&Mixin = self::Super<dynamic> with mix::Mixin<dynamic> {
19 constructor •() → void 21 }
22 class D extends self::_Super&Mixin {
23 default constructor •() → void
20 ; 24 ;
21 } 25 }
22 class C2<V extends core::Object> extends self::Super+Mixin#1<self::C2::V, self:: C2::V> { 26 class C2<V extends core::Object> = self::Super<self::C2::V> with mix::Mixin<self ::C2::V> {
23 constructor •() → void 27 constructor •() → void
28 : super self::Super::•()
24 ; 29 ;
25 } 30 }
26 class D2 extends self::Super+Mixin#0<dynamic> { 31 class D2 = self::Super<dynamic> with mix::Mixin<dynamic> {
27 constructor •() → void 32 constructor •() → void
28 ; 33 : super self::Super::•()
29 }
30 abstract class Super+Mixin#0<T extends core::Object> extends self::Super<dynamic > implements mix::Mixin<dynamic> {
31 field self::Super+Mixin#0::T t;
32 field dynamic z;
33 field dynamic y;
34 field dynamic x;
35 constructor •() → void
36 ;
37 method publicMethod() → dynamic
38 ;
39 method _privateMethod() → dynamic
40 ;
41 method l() → dynamic
42 ;
43 method h() → dynamic
44 ;
45 method g(self::Super+Mixin#0::T a) → self::Super+Mixin#0::T
46 ;
47 method foo() → dynamic
48 ;
49 }
50 abstract class Super+Mixin#1<T extends core::Object, V extends core::Object> ext ends self::Super<self::Super+Mixin#1::V> implements mix::Mixin<self::Super+Mixin #1::V> {
51 field self::Super+Mixin#1::T t;
52 field dynamic z;
53 field dynamic y;
54 field dynamic x;
55 constructor •() → void
56 ;
57 method publicMethod() → dynamic
58 ;
59 method _privateMethod() → dynamic
60 ;
61 method l() → dynamic
62 ;
63 method h() → dynamic
64 ;
65 method g(self::Super+Mixin#1::T a) → self::Super+Mixin#1::T
66 ;
67 method foo() → dynamic
68 ;
69 }
70 abstract class Super+Mixin#2<T extends core::Object> extends self::Super<dynamic > implements mix::Mixin<dynamic> {
71 field self::Super+Mixin#2::T t;
72 field dynamic z;
73 field dynamic y;
74 field dynamic x;
75 constructor •() → void
76 ;
77 method publicMethod() → dynamic
78 ;
79 method _privateMethod() → dynamic
80 ;
81 method l() → dynamic
82 ;
83 method h() → dynamic
84 ;
85 method g(self::Super+Mixin#2::T a) → self::Super+Mixin#2::T
86 ;
87 method foo() → dynamic
88 ;
89 }
90 abstract class Super+Mixin#3<T extends core::Object, V extends core::Object> ext ends self::Super<self::Super+Mixin#3::V> implements mix::Mixin<self::Super+Mixin #3::V> {
91 field self::Super+Mixin#3::T t;
92 field dynamic z;
93 field dynamic y;
94 field dynamic x;
95 constructor •() → void
96 ;
97 method publicMethod() → dynamic
98 ;
99 method _privateMethod() → dynamic
100 ;
101 method l() → dynamic
102 ;
103 method h() → dynamic
104 ;
105 method g(self::Super+Mixin#3::T a) → self::Super+Mixin#3::T
106 ;
107 method foo() → dynamic
108 ; 34 ;
109 } 35 }
110 static method main() → dynamic 36 static method main() → dynamic
111 ; 37 ;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698