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

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: 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/mixin_library.dart ('k') | test/kernel/regression/parser_error.dart.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..cda421698a7e68a5b37c6523d7bc118ba2eea0be 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::dart.core::_unresolvedSuperMethodError(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::test.mixin_library::_private();
+ method test.mixin_library::_privateMethod() → dynamic
+ return 49;
+ method publicMethod() → dynamic
+ return this.test.mixin_library::_privateMethod();
}
static method f() → dynamic
return 2;
static method V() → dynamic
return 87;
-static method _private() → dynamic
+static method test.mixin_library::_private() → dynamic
return 117;
+static method foo(dynamic m) → dynamic
+ return m.test.mixin_library::_privateMethod();
« no previous file with comments | « test/kernel/regression/mixin_library.dart ('k') | test/kernel/regression/parser_error.dart.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698