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(); |