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

Unified Diff: test/kernel/regression/super_mixin.dart.txt

Issue 2116793002: Work around for private names in mixin applications. (Closed) Base URL: git@github.com:dart-lang/rasta.git@master
Patch Set: Update test expectations. Created 4 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 | « test/kernel/regression/super.dart.txt ('k') | test/kernel/regression/super_operator.dart.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/kernel/regression/super_mixin.dart.txt
diff --git a/test/kernel/regression/super_mixin.dart.txt b/test/kernel/regression/super_mixin.dart.txt
index 486621304d0a842223cca806bd4287502f9c816c..05da0332692b77233e1f936fc8fa7a3c604aeff3 100644
--- a/test/kernel/regression/super_mixin.dart.txt
+++ b/test/kernel/regression/super_mixin.dart.txt
@@ -34,8 +34,12 @@ abstract class Super+Mixin#0<T extends core::Object> extends self::Super<dynam
field dynamic x;
constructor •() → self::Super<dynamic>
: self::Super+Mixin#0::x = mix::f(), super self::Super::•();
+ method publicMethod() → dynamic
+ return this.test.mixin_library::_privateMethod();
+ method test.mixin_library::_privateMethod() → dynamic
+ return 49;
method l() → dynamic
- return mix::_private();
+ return mix::test.mixin_library::_private();
method h() → dynamic
return mix::V();
method g(self::Super+Mixin#0::T a) → self::Super+Mixin#0::T
@@ -50,8 +54,12 @@ abstract class Super+Mixin#1<T extends core::Object, V extends core::Object>
field dynamic x;
constructor •() → self::Super<self::Super+Mixin#1::V>
: self::Super+Mixin#1::x = mix::f(), super self::Super::•();
+ method publicMethod() → dynamic
+ return this.test.mixin_library::_privateMethod();
+ method test.mixin_library::_privateMethod() → dynamic
+ return 49;
method l() → dynamic
- return mix::_private();
+ return mix::test.mixin_library::_private();
method h() → dynamic
return mix::V();
method g(self::Super+Mixin#1::T a) → self::Super+Mixin#1::T
@@ -66,8 +74,12 @@ abstract class Super+Mixin#2<T extends core::Object> extends self::Super<dynam
field dynamic x;
constructor •() → self::Super<dynamic>
: self::Super+Mixin#2::x = mix::f(), super self::Super::•();
+ method publicMethod() → dynamic
+ return this.test.mixin_library::_privateMethod();
+ method test.mixin_library::_privateMethod() → dynamic
+ return 49;
method l() → dynamic
- return mix::_private();
+ return mix::test.mixin_library::_private();
method h() → dynamic
return mix::V();
method g(self::Super+Mixin#2::T a) → self::Super+Mixin#2::T
@@ -82,8 +94,12 @@ abstract class Super+Mixin#3<T extends core::Object, V extends core::Object>
field dynamic x;
constructor •() → self::Super<self::Super+Mixin#3::V>
: self::Super+Mixin#3::x = mix::f(), super self::Super::•();
+ method publicMethod() → dynamic
+ return this.test.mixin_library::_privateMethod();
+ method test.mixin_library::_privateMethod() → dynamic
+ return 49;
method l() → dynamic
- return mix::_private();
+ return mix::test.mixin_library::_private();
method h() → dynamic
return mix::V();
method g(self::Super+Mixin#3::T a) → self::Super+Mixin#3::T
« no previous file with comments | « test/kernel/regression/super.dart.txt ('k') | test/kernel/regression/super_operator.dart.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698