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

Unified Diff: test/kernel/regression/mixin_library.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/mixin_library.dart.txt
diff --git a/test/kernel/regression/mixin_library.dart.txt b/test/kernel/regression/mixin_library.dart.txt
index 0befae993ace8282a8ddc14dd82d9b5a389f1978..ea7170686372160a561efed8d2ee53753918b6c0 100644
--- a/test/kernel/regression/mixin_library.dart.txt
+++ b/test/kernel/regression/mixin_library.dart.txt
@@ -10,17 +10,23 @@ class Mixin<T extends core::Object> extends core::Object {
constructor •() → self::Mixin<self::Mixin::T>
: self::Mixin::x = self::f(), super core::Object::•();
method foo() → dynamic
- return(throw core::_unresolvedSuperMethodError(this, #foo, <dynamic>[], <dynamic, dynamic>{}, null)).+(self::f());
+ return(throw core::_unresolvedSuperMethodError@dart.core(this, #foo, <dynamic>[], <dynamic, dynamic>{}, null)).+(self::f());
method g(self::Mixin::T a) → self::Mixin::T
return null;
method h() → dynamic
return self::V();
method l() → dynamic
- return self::_private();
+ return self::_private@test.mixin_library();
+ method _privateMethod@test.mixin_library() → dynamic
+ return 49;
+ method publicMethod() → dynamic
+ return this._privateMethod@test.mixin_library();
}
static method f() → dynamic
return 2;
static method V() → dynamic
return 87;
-static method _private() → dynamic
+static method _private@test.mixin_library() → dynamic
return 117;
+static method foo(dynamic m) → dynamic
+ return m._privateMethod@test.mixin_library();

Powered by Google App Engine
This is Rietveld 408576698