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

Unified Diff: pkg/front_end/testcases/runtime_checks/covariant_generic_parameter_tear_off.dart.direct.expect

Issue 2995383002: Beef up the covariant generic parameter tear off test case (Closed)
Patch Set: Fix test Created 3 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
Index: pkg/front_end/testcases/runtime_checks/covariant_generic_parameter_tear_off.dart.direct.expect
diff --git a/pkg/front_end/testcases/runtime_checks/covariant_generic_parameter_tear_off.dart.direct.expect b/pkg/front_end/testcases/runtime_checks/covariant_generic_parameter_tear_off.dart.direct.expect
index 8da8225c39c8a5154a9162c1d0808a9415ef515c..6130f9a04a25f9d350247c2cb71dc6d42ec158fe 100644
--- a/pkg/front_end/testcases/runtime_checks/covariant_generic_parameter_tear_off.dart.direct.expect
+++ b/pkg/front_end/testcases/runtime_checks/covariant_generic_parameter_tear_off.dart.direct.expect
@@ -3,21 +3,28 @@ import self as self;
import "dart:core" as core;
typedef F<T extends core::Object> = (T) → void;
+typedef G<T extends core::Object, U extends core::Object> = (T) → U;
class C<T extends core::Object> extends core::Object {
default constructor •() → void
: super core::Object::•()
;
- method f(self::C::T x) → void {}
+ method f1(self::C::T x) → void {}
+ method f2(core::List<self::C::T> x) → self::C::T
+ return x.first;
}
-static method g1(self::C<core::num> c) → void {
- c.f;
+static method g1(self::C<core::num> c) → (core::num) → void {
+ return c.f1;
}
static method g2(self::C<core::int> c, core::Object x) → void {
(core::Object) → void f = self::g1(c) as (core::Object) → void;
f.call(x);
}
+static method g3(self::C<core::num> c) → (core::List<core::num>) → core::num {
+ return c.f2;
+}
static method test() → void {
dynamic x = self::g1(new self::C::•<core::int>());
x.call(1.5);
+ self::g3(new self::C::•<core::int>());
}
static method main() → dynamic {}

Powered by Google App Engine
This is Rietveld 408576698