}
private static MeiNode handleScoreChild(BasicElement childForm,
boolean saveAllVariants) {
if (childForm instanceof SectionForm) {
SectionForm sectionForm = (SectionForm) childForm;
Section section = (Section) sectionForm.getMeiNode();
section.getUnclearsAndSbsAndApps().clear();
for (BasicElement sectionChildForm : sectionForm.getChildren()) {
section.getUnclearsAndSbsAndApps().add(
handleScoreChild(sectionChildForm, saveAllVariants));
}
return section;
} else if (childForm instanceof EndingForm) {