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

Unified Diff: tool/input_sdk/lib/collection/set.dart

Issue 1956933002: Update collection (list / map / iterable) printing. (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: Created 4 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 | « tool/input_sdk/lib/collection/maps.dart ('k') | tool/input_sdk/lib/core/map.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/collection/set.dart
diff --git a/tool/input_sdk/lib/collection/set.dart b/tool/input_sdk/lib/collection/set.dart
index f2a4aa11da0e2f9d3364e970e16d2c4352c4ae2a..499225dca2b1f9fa40493e9091ca2571e671c4e1 100644
--- a/tool/input_sdk/lib/collection/set.dart
+++ b/tool/input_sdk/lib/collection/set.dart
@@ -158,7 +158,7 @@ abstract class SetMixin<E> implements Set<E> {
}
dynamic/*=T*/ fold/*<T>*/(var/*=T*/ initialValue,
- dynamic/*=T*/ combine(var/*=T*/ previousValue, E element)) {
+ dynamic/*=T*/ combine(var/*=T*/ previousValue, E element)) {
var value = initialValue;
for (E element in this) value = combine(value, element);
return value;
« no previous file with comments | « tool/input_sdk/lib/collection/maps.dart ('k') | tool/input_sdk/lib/core/map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698