blob: 70dc83c7a9b8c93aacc3e0e643ff7d647f0f0c6b [file] [log] [blame]
>>> (indent 4)
main() {
return maps
.where((map) => map != null)
.expand((map) => map!.entries)
.fold({}, (merged, entry) {
merged[kp(entry.key)] = vp(entry.value);
return merged;
});
}
<<<
main() {
return maps
.where((map) => map != null)
.expand((map) => map!.entries)
.fold({}, (merged, entry) {
merged[kp(entry.key)] = vp(entry.value);
return merged;
});
}
>>>
class C {
static List<V> spaceBetween<V>(
List<V> collection,
V spacer, {
bool? bothEnds = false,
bool? leftEnd = false,
bool? rightEnd = false,
}) {
;
}
}
<<<
class C {
static List<V> spaceBetween<V>(
List<V> collection,
V spacer, {
bool? bothEnds = false,
bool? leftEnd = false,
bool? rightEnd = false,
}) {
;
}
}