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

Side by Side Diff: pkg/front_end/testcases/inference/infer_field_overrides_getter.dart.direct.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 test; 1 library test;
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 abstract class A extends core::Object { 5 abstract class A extends core::Object {
6 default constructor •() → void 6 default constructor •() → void
7 : super core::Object::•() 7 : super core::Object::•()
8 ; 8 ;
9 abstract get x() → core::int; 9 abstract get x() → core::int;
10 } 10 }
(...skipping 21 matching lines...) Expand all
32 default constructor •() → void 32 default constructor •() → void
33 : super core::Object::•() 33 : super core::Object::•()
34 ; 34 ;
35 } 35 }
36 class F extends core::Object implements self::B { 36 class F extends core::Object implements self::B {
37 field dynamic x = null; 37 field dynamic x = null;
38 default constructor •() → void 38 default constructor •() → void
39 : super core::Object::•() 39 : super core::Object::•()
40 ; 40 ;
41 } 41 }
42 abstract class Object&B = core::Object with self::B { 42 abstract class _Object&B = core::Object with self::B {
43 } 43 }
44 class G extends self::Object&B { 44 class G extends self::_Object&B {
45 field dynamic x = null; 45 field dynamic x = null;
46 default constructor •() → void 46 default constructor •() → void
47 : super core::Object::•() 47 : super core::Object::•()
48 ; 48 ;
49 } 49 }
50 static method main() → dynamic {} 50 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698