Skip to content

Commit

Permalink
Resolve spaces after +
Browse files Browse the repository at this point in the history
  • Loading branch information
Baltoli authored Oct 26, 2023
1 parent 38a90ab commit d9f4e33
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,8 @@ private static Tuple4<Set<Sentence>, Sort, K, Boolean> computeSentencesOfWellFor
fragmentItems.add(NonTerminal(childOptSort));

sentences.add(Production(Seq(), childOptSort, List(NonTerminal(childSort))));
if (!m.definedKLabels().contains(KLabel("no"+ childSort))) {
sentences.add(Production(KLabel("no"+ childSort), childOptSort, List(Terminal("no"+ childSort)),
if (!m.definedKLabels().contains(KLabel("no" + childSort))) {
sentences.add(Production(KLabel("no" + childSort), childOptSort, List(Terminal("no" + childSort)),
Att().add(Att.CELL_OPT_ABSENT(),Sort.class,childSort)));
}
}
Expand Down

0 comments on commit d9f4e33

Please sign in to comment.