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

Unified Diff: lib/src/codegen/reify_coercions.dart

Issue 1160223006: Fix DDC errors on DDC (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: address comments Created 5 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
« no previous file with comments | « lib/src/codegen/js_metalet.dart ('k') | lib/src/codegen/side_effect_analysis.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/codegen/reify_coercions.dart
diff --git a/lib/src/codegen/reify_coercions.dart b/lib/src/codegen/reify_coercions.dart
index f9fac5deb106a316c40e2e963910d0911da7063b..169012b03ceead82b08c26af0d1304b672acf8c7 100644
--- a/lib/src/codegen/reify_coercions.dart
+++ b/lib/src/codegen/reify_coercions.dart
@@ -375,7 +375,8 @@ class CoercionManager {
}
var id = _vm.freshIdentifier(hint);
var fp = AstBuilder.simpleFormal(id, null);
- f(e2) => AstBuilder.parenthesize(AstBuilder.letExpression(fp, e1, e2));
+ Expression f(Expression e2) =>
+ AstBuilder.parenthesize(AstBuilder.letExpression(fp, e1, e2));
return new Tuple2(id, f);
}
« no previous file with comments | « lib/src/codegen/js_metalet.dart ('k') | lib/src/codegen/side_effect_analysis.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698