-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requestarea-devexpFor issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.devexp-lspIssues with analysis server's support of Language Server ProtocolIssues with analysis server's support of Language Server Protocol
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
Metadata
Metadata
Assignees
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requestarea-devexpFor issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.devexp-lspIssues with analysis server's support of Language Server ProtocolIssues with analysis server's support of Language Server Protocol