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

Side by Side Diff: pkg/front_end/testcases/inference/generic_methods_infer_generic_instantiation.dart.strong.expect

Issue 2884483002: Implement function-typed formal parameters in OutlineBuilder. (Closed)
Patch Set: Rework to avoid merge conflicts with https://codereview.chromium.org/2876813002/ Created 3 years, 7 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 import "dart:math" as math; 4 import "dart:math" as math;
5 5
6 class C extends core::Object { 6 class C extends core::Object {
7 constructor •() → void 7 constructor •() → void
8 : super core::Object::•() 8 : super core::Object::•()
9 ; 9 ;
10 method m(core::num x, core::num y) → core::num 10 method m(core::num x, core::num y) → core::num
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 self::takeIIN(new self::C::•().m); 47 self::takeIIN(new self::C::•().m);
48 self::takeDDN(new self::C::•().m); 48 self::takeDDN(new self::C::•().m);
49 self::takeIIO(new self::C::•().m); 49 self::takeIIO(new self::C::•().m);
50 self::takeDDO(new self::C::•().m); 50 self::takeDDO(new self::C::•().m);
51 self::takeOON(new self::C::•().m); 51 self::takeOON(new self::C::•().m);
52 self::takeOOO(new self::C::•().m); 52 self::takeOOO(new self::C::•().m);
53 self::takeOOI(new self::C::•().m); 53 self::takeOOI(new self::C::•().m);
54 self::takeIDI(new self::C::•().m); 54 self::takeIDI(new self::C::•().m);
55 self::takeDID(new self::C::•().m); 55 self::takeDID(new self::C::•().m);
56 } 56 }
57 static method takeIII(dynamic fn) → void {} 57 static method takeIII((core::int, core::int) → core::int fn) → void {}
58 static method takeDDD(dynamic fn) → void {} 58 static method takeDDD((core::double, core::double) → core::double fn) → void {}
59 static method takeIDI(dynamic fn) → void {} 59 static method takeIDI((core::double, core::int) → core::int fn) → void {}
60 static method takeDID(dynamic fn) → void {} 60 static method takeDID((core::int, core::double) → core::double fn) → void {}
61 static method takeIDN(dynamic fn) → void {} 61 static method takeIDN((core::double, core::int) → core::num fn) → void {}
62 static method takeDIN(dynamic fn) → void {} 62 static method takeDIN((core::int, core::double) → core::num fn) → void {}
63 static method takeIIN(dynamic fn) → void {} 63 static method takeIIN((core::int, core::int) → core::num fn) → void {}
64 static method takeDDN(dynamic fn) → void {} 64 static method takeDDN((core::double, core::double) → core::num fn) → void {}
65 static method takeNNN(dynamic fn) → void {} 65 static method takeNNN((core::num, core::num) → core::num fn) → void {}
66 static method takeOON(dynamic fn) → void {} 66 static method takeOON((core::Object, core::Object) → core::num fn) → void {}
67 static method takeOOO(dynamic fn) → void {} 67 static method takeOOO((core::Object, core::Object) → core::num fn) → void {}
68 static method takeOOI(dynamic fn) → void {} 68 static method takeOOI((core::Object, core::Object) → core::int fn) → void {}
69 static method takeIIO(dynamic fn) → void {} 69 static method takeIIO((core::int, core::int) → core::Object fn) → void {}
70 static method takeDDO(dynamic fn) → void {} 70 static method takeDDO((core::double, core::double) → core::Object fn) → void {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698