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

Unified Diff: pkg/kernel/testcases/closures/static_tear_off.dart.expect

Issue 2995083002: [kernel] Fix bug with redirecting constructors in closure conversion. (Closed)
Patch Set: 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/kernel/testcases/closures/static_tear_off.dart.expect
diff --git a/pkg/kernel/testcases/closures/static_tear_off.dart.expect b/pkg/kernel/testcases/closures/static_tear_off.dart.expect
index d7caf82d3d8a3701a690aebd537639a8cdfe4ae7..7eed6c110d52356a4deea9d3eb81c65df9fd2a44 100644
--- a/pkg/kernel/testcases/closures/static_tear_off.dart.expect
+++ b/pkg/kernel/testcases/closures/static_tear_off.dart.expect
@@ -2,18 +2,14 @@ library;
import self as self;
import "dart:core" as core;
-static method f_1_1_no_default(dynamic a, [dynamic b = null]) → dynamic {
+static method f_1_1_no_default(dynamic a, [dynamic b = null]) → dynamic
return a.+(b);
-}
-static method f_1_1_default(dynamic a, [dynamic b = 2]) → dynamic {
+static method f_1_1_default(dynamic a, [dynamic b = 2]) → dynamic
return a.+(b);
-}
-static method f_1_b_no_default(dynamic a, {dynamic b = null}) → dynamic {
+static method f_1_b_no_default(dynamic a, {dynamic b = null}) → dynamic
return a.+(b);
-}
-static method f_1_b_default(dynamic a, {dynamic b = 2}) → dynamic {
+static method f_1_b_default(dynamic a, {dynamic b = 2}) → dynamic
return a.+(b);
-}
static method test_1_1(core::Function f, core::bool hasDefault) → dynamic {
dynamic result = f.call(40, 2);
if(!42.==(result))

Powered by Google App Engine
This is Rietveld 408576698