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

Side by Side 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 unified diff | Download patch
OLDNEW
1 library test; 1 library test;
2 import self as self; 2 import self as self;
3 import "dart:core" as core; 3 import "dart:core" as core;
4 4
5 typedef F<T extends core::Object> = (T) → void; 5 typedef F<T extends core::Object> = (T) → void;
6 typedef G<T extends core::Object, U extends core::Object> = (T) → U;
6 class C<T extends core::Object> extends core::Object { 7 class C<T extends core::Object> extends core::Object {
7 default constructor •() → void 8 default constructor •() → void
8 : super core::Object::•() 9 : super core::Object::•()
9 ; 10 ;
10 method f(self::C::T x) → void {} 11 method f1(self::C::T x) → void {}
12 method f2(core::List<self::C::T> x) → self::C::T
13 return x.first;
11 } 14 }
12 static method g1(self::C<core::num> c) → void { 15 static method g1(self::C<core::num> c) → (core::num) → void {
13 c.f; 16 return c.f1;
14 } 17 }
15 static method g2(self::C<core::int> c, core::Object x) → void { 18 static method g2(self::C<core::int> c, core::Object x) → void {
16 (core::Object) → void f = self::g1(c) as (core::Object) → void; 19 (core::Object) → void f = self::g1(c) as (core::Object) → void;
17 f.call(x); 20 f.call(x);
18 } 21 }
22 static method g3(self::C<core::num> c) → (core::List<core::num>) → core::num {
23 return c.f2;
24 }
19 static method test() → void { 25 static method test() → void {
20 dynamic x = self::g1(new self::C::•<core::int>()); 26 dynamic x = self::g1(new self::C::•<core::int>());
21 x.call(1.5); 27 x.call(1.5);
28 self::g3(new self::C::•<core::int>());
22 } 29 }
23 static method main() → dynamic {} 30 static method main() → dynamic {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698