(h *SummaryHighlight, change *v1.Change[v1.BaselineState])
| 574 | base := pluralize(len(d.Splits), "feature split", "features split") |
| 575 | parts = append(parts, base) |
| 576 | c.Split = len(d.Splits) |
| 577 | } |
| 578 | if len(d.Modified) > 0 { |
| 579 | for _, m := range d.Modified { |
| 580 | if len(m.BrowserChanges) > 0 { |
| 581 | c.UpdatedImpl++ |
| 582 | } |
| 583 | if m.NameChange != nil { |
| 584 | c.UpdatedRename++ |
| 585 | } |
| 586 | if m.BaselineChange != nil { |
| 587 | c.UpdatedBaseline++ |
no test coverage detected