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

Side by Side Diff: pkg/front_end/testcases/runtime_checks/covariant_generic_parameter_tear_off.dart.outline.expect

Issue 2995383002: Beef up the covariant generic parameter tear off test case (Closed)
Patch Set: Fix test Created 3 years, 3 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
« no previous file with comments | « pkg/front_end/testcases/runtime_checks/covariant_generic_parameter_tear_off.dart.direct.expect ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ; 9 ;
9 method f(self::C::T x) → void 10 method f1(self::C::T x) → void
11 ;
12 method f2(core::List<self::C::T> x) → self::C::T
10 ; 13 ;
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 ; 16 ;
14 static method g2(self::C<core::int> c, core::Object x) → void 17 static method g2(self::C<core::int> c, core::Object x) → void
15 ; 18 ;
19 static method g3(self::C<core::num> c) → (core::List<core::num>) → core::num
20 ;
16 static method test() → void 21 static method test() → void
17 ; 22 ;
18 static method main() → dynamic 23 static method main() → dynamic
19 ; 24 ;
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/runtime_checks/covariant_generic_parameter_tear_off.dart.direct.expect ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698