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

Unified Diff: pkg/front_end/testcases/inference/lambda_return_type.dart.direct.expect

Issue 2958363002: Adjust return types of spec-mode function expressions to match VM. (Closed)
Patch Set: Created 3 years, 6 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/lambda_return_type.dart.direct.expect
diff --git a/pkg/front_end/testcases/inference/lambda_return_type.dart.direct.expect b/pkg/front_end/testcases/inference/lambda_return_type.dart.direct.expect
index 576d3346613dde65c4174bba8de87257fc7a40da..84aa28ccb6affbfe13d6de532f32f6cd31f9e258 100644
--- a/pkg/front_end/testcases/inference/lambda_return_type.dart.direct.expect
+++ b/pkg/front_end/testcases/inference/lambda_return_type.dart.direct.expect
@@ -6,8 +6,8 @@ typedef FunctionReturningNum = () → core::num;
static method main() → dynamic {
core::int i = 1;
core::Object o = 1;
- () → core::num a = () → core::int => i;
- () → core::num b = () → core::Object => o;
+ () → core::num a = () → dynamic => i;
+ () → core::num b = () → dynamic => o;
() → core::num c = () → dynamic {
return i;
};

Powered by Google App Engine
This is Rietveld 408576698