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

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: Rebased on CL 2201763003. Created 4 years, 5 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
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..9768dfc9aca42b49b439caa306651a41285c0ec9 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._privateMethod@test.mixin_library();
+ method _privateMethod@test.mixin_library() → dynamic
+ return 49;
method l() → dynamic
- return mix::_private();
+ return mix::_private@test.mixin_library();
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._privateMethod@test.mixin_library();
+ method _privateMethod@test.mixin_library() → dynamic
+ return 49;
method l() → dynamic
- return mix::_private();
+ return mix::_private@test.mixin_library();
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._privateMethod@test.mixin_library();
+ method _privateMethod@test.mixin_library() → dynamic
+ return 49;
method l() → dynamic
- return mix::_private();
+ return mix::_private@test.mixin_library();
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._privateMethod@test.mixin_library();
+ method _privateMethod@test.mixin_library() → dynamic
+ return 49;
method l() → dynamic
- return mix::_private();
+ return mix::_private@test.mixin_library();
method h() → dynamic
return mix::V();
method g(self::Super+Mixin#3::T a) → self::Super+Mixin#3::T

Powered by Google App Engine
This is Rietveld 408576698