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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/testcases/inference/generic_methods_infer_generic_instantiation.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/generic_methods_infer_generic_instantiation.dart.strong.expect b/pkg/front_end/testcases/inference/generic_methods_infer_generic_instantiation.dart.strong.expect
index 0e63b30531b9d0c6a8032ae4f6acd99e0aacff8b..c1a0a71980a638bacf24b6d2296284fe77fbc41b 100644
--- a/pkg/front_end/testcases/inference/generic_methods_infer_generic_instantiation.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/generic_methods_infer_generic_instantiation.dart.strong.expect
@@ -54,17 +54,17 @@ static method main() → dynamic {
self::takeIDI(new self::C::•().m);
self::takeDID(new self::C::•().m);
}
-static method takeIII(dynamic fn) → void {}
-static method takeDDD(dynamic fn) → void {}
-static method takeIDI(dynamic fn) → void {}
-static method takeDID(dynamic fn) → void {}
-static method takeIDN(dynamic fn) → void {}
-static method takeDIN(dynamic fn) → void {}
-static method takeIIN(dynamic fn) → void {}
-static method takeDDN(dynamic fn) → void {}
-static method takeNNN(dynamic fn) → void {}
-static method takeOON(dynamic fn) → void {}
-static method takeOOO(dynamic fn) → void {}
-static method takeOOI(dynamic fn) → void {}
-static method takeIIO(dynamic fn) → void {}
-static method takeDDO(dynamic fn) → void {}
+static method takeIII((core::int, core::int) → core::int fn) → void {}
+static method takeDDD((core::double, core::double) → core::double fn) → void {}
+static method takeIDI((core::double, core::int) → core::int fn) → void {}
+static method takeDID((core::int, core::double) → core::double fn) → void {}
+static method takeIDN((core::double, core::int) → core::num fn) → void {}
+static method takeDIN((core::int, core::double) → core::num fn) → void {}
+static method takeIIN((core::int, core::int) → core::num fn) → void {}
+static method takeDDN((core::double, core::double) → core::num fn) → void {}
+static method takeNNN((core::num, core::num) → core::num fn) → void {}
+static method takeOON((core::Object, core::Object) → core::num fn) → void {}
+static method takeOOO((core::Object, core::Object) → core::num fn) → void {}
+static method takeOOI((core::Object, core::Object) → core::int fn) → void {}
+static method takeIIO((core::int, core::int) → core::Object fn) → void {}
+static method takeDDO((core::double, core::double) → core::Object fn) → void {}

Powered by Google App Engine
This is Rietveld 408576698