(path: &str)
| 3167 | let mut in_objects = false; |
| 3168 | let mut objects = Vec::new(); |
| 3169 | for line in text.lines() { |
| 3170 | let trimmed = line.trim(); |
| 3171 | if trimmed == "[Objects]" { |
| 3172 | in_objects = true; |
| 3173 | continue; |
| 3174 | } |
| 3175 | if trimmed == "[/Objects]" { |
| 3176 | break; |
| 3177 | } |
| 3178 | if in_objects && trimmed.contains('=') { |
| 3179 | objects.push(trimmed.to_string()); |
| 3180 | } |
| 3181 | if objects.len() >= 6 { |
no test coverage detected