dart-archive / rules_dart

Dart rules for Bazel
Apache License 2.0
12 stars 17 forks source link

Replace iteration over depsets with an explicit .to_list() call. #204

Closed meisterT closed 6 years ago

meisterT commented 6 years ago

The old pattern did an implicit iteration over a depset which will be forbidden in the future since it is potentially expensive. The new to_list() call is still expensive but it will be more visible.