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

Unified Diff: pkg/front_end/testcases/mixin.dart.strong.expect

Issue 3004703002: Don't export unnamed mixins. (Closed)
Patch Set: Update transitive_mixins.dart.shaker Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/front_end/testcases/mixin.dart.outline.expect ('k') | pkg/front_end/testcases/outline.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/testcases/mixin.dart.strong.expect
diff --git a/pkg/front_end/testcases/mixin.dart.direct.expect b/pkg/front_end/testcases/mixin.dart.strong.expect
similarity index 58%
copy from pkg/front_end/testcases/mixin.dart.direct.expect
copy to pkg/front_end/testcases/mixin.dart.strong.expect
index 3d5342cc9d22c20dd410d8774808c26e45c26d16..01891c8aa86e20512551e8c5023d50b16acf80ed 100644
--- a/pkg/front_end/testcases/mixin.dart.direct.expect
+++ b/pkg/front_end/testcases/mixin.dart.strong.expect
@@ -2,11 +2,11 @@ library;
import self as self;
import "dart:core" as core;
-abstract class Object&M1 = core::Object with self::M1 {
+abstract class _Object&M1 = core::Object with self::M1 {
}
-abstract class Object&M1&M2 = self::Object&M1 with self::M2 {
+abstract class __Object&M1&M2 = self::_Object&M1 with self::M2 {
}
-class B extends self::Object&M1&M2 {
+class B extends self::__Object&M1&M2 {
constructor •(dynamic value) → void
: super core::Object::•()
;
@@ -25,7 +25,7 @@ abstract class M2 extends core::Object {
method m() → dynamic
return core::print("M2");
}
-class C extends self::Object&M1&M2 {
+class C extends self::__Object&M1&M2 {
constructor •(dynamic value) → void
: super core::Object::•()
;
@@ -37,17 +37,17 @@ abstract class G1<T extends core::Object> extends core::Object {
method m() → dynamic
return core::print(self::G1::T);
}
-abstract class Object&G1^^#T0<#T0 extends core::Object> = core::Object with self::G1<self::Object&G1^^#T0::#T0> {
+abstract class _Object&G1^^#T0<#T0 extends core::Object> = core::Object with self::G1<self::_Object&G1^^#T0::#T0> {
}
-class D<S extends core::Object> extends self::Object&G1^^#T0<self::D::S> {
+class D<S extends core::Object> extends self::_Object&G1^^#T0<self::D::S> {
default constructor •() → void
: super core::Object::•()
;
}
static method main() → dynamic {
- new self::B::•(null).m();
- new self::C::•(null).m();
- new self::D::•<dynamic>().m();
- new self::D::•<core::int>().m();
- new self::D::•<core::List<core::int>>().m();
+ new self::B::•(null).{self::M2::m}();
+ new self::C::•(null).{self::M2::m}();
+ new self::D::•<dynamic>().{self::G1::m}();
+ new self::D::•<core::int>().{self::G1::m}();
+ new self::D::•<core::List<core::int>>().{self::G1::m}();
}
« no previous file with comments | « pkg/front_end/testcases/mixin.dart.outline.expect ('k') | pkg/front_end/testcases/outline.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698