Closed
Description
If you have this code:
void main() {
f({}, []);
}
void f(Set<int> s, List<int> l) {
print('test');
}
And place a breakpoint on print
, these are the values you'll see:
It feels a bit weird that s
only shows Set
and l
shows List (0 items)
. I feel like all iterables should display the number of items or something like that.
CC @DanTup