We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68fbae0 commit 457ae22Copy full SHA for 457ae22
bin/live_code_size_analysis.dart
@@ -73,7 +73,9 @@ main(args) async {
73
var name = f.name;
74
if (name.contains('.')) name = name.substring(name.lastIndexOf('.') + 1);
75
var otherName = data['name'];
76
- if (otherName.contains('.')) otherName = otherName.substring(otherName.lastIndexOf('.') + 1);
+ if (otherName.contains('.')) {
77
+ otherName = otherName.substring(otherName.lastIndexOf('.') + 1);
78
+ }
79
if (otherName != name && otherName != '') {
80
print('invalid coverage: $data for $f, ($name vs $otherName)');
81
}
0 commit comments