commit | b7d72b670412c8dc9189f9da61a94c355e61e71e | [log] [tgz] |
---|---|---|
author | Jacob MacDonald <jakemac@google.com> | Fri Feb 26 11:51:19 2021 -0800 |
committer | GitHub <noreply@github.com> | Fri Feb 26 11:51:19 2021 -0800 |
tree | 461b4111c4d7f50348d524b1ec791b114c4f68ba | |
parent | cf67f706f78254b6459f095dd29c827752d6fd9f [diff] |
migrate to null safety (dart-lang/coverage#332) I did not do large refactors for the most part here I left in existing assumptions which means a lot of `!` are added. Note that the `_shouldIgnoreLine` private method was moved to a local method and the patterns around it changed a fair bit due to iterators changing with null safety (it previously relied on `current` being null and now uses the result of `moveNext`).