This commit is contained in:
Thomas Güttler
2026-04-16 15:14:18 +02:00
parent c6be26623d
commit 99a46e1589
16 changed files with 1047 additions and 16 deletions
+3 -1
View File
@@ -79,7 +79,9 @@ void main() {
currentSf = line.substring(3);
} else if (line.startsWith('DA:') &&
currentSf != null &&
!_excluded.contains(currentSf)) {
!_excluded.contains(currentSf) &&
!_noCode.contains(currentSf) &&
!currentSf.endsWith('.g.dart')) {
final count = int.parse(line.substring(3).split(',')[1]);
total++;
if (count > 0) hits++;