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

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

Issue 2205943003: Don't mangle private names. (Closed) Base URL: git@github.com:dart-lang/rasta.git@master
Patch Set: 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/issue_000081.dart.txt ('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 cda421698a7e68a5b37c6523d7bc118ba2eea0be..6cbc86b653cf82869d635a403c3a454837b3a2ab 100644
--- a/test/kernel/regression/mixin_library.dart.txt
+++ b/test/kernel/regression/mixin_library.dart.txt
@@ -10,23 +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::dart.core::_unresolvedSuperMethodError(this, #foo, <dynamic>[], <dynamic, dynamic>{}, null)).+(self::f());
+ return(throw 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::test.mixin_library::_private();
- method test.mixin_library::_privateMethod() → dynamic
+ return self::_private();
+ method _privateMethod() → dynamic
return 49;
method publicMethod() → dynamic
- return this.test.mixin_library::_privateMethod();
+ return this._privateMethod();
}
static method f() → dynamic
return 2;
static method V() → dynamic
return 87;
-static method test.mixin_library::_private() → dynamic
+static method _private() → dynamic
return 117;
static method foo(dynamic m) → dynamic
- return m.test.mixin_library::_privateMethod();
+ return m._privateMethod();
« no previous file with comments | « test/kernel/regression/issue_000081.dart.txt ('k') | test/kernel/regression/parser_error.dart.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698