Skip to content

Commit

Permalink
fix(Dafny): Nested references set comprehension (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmcdonald3 authored Sep 26, 2024
1 parent 336d788 commit 55c68f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2219,7 +2219,7 @@ private TokenTree modifiesClauseForPathToReference(
modifiesClause =
modifiesClause.append(
TokenTree.of(
", t%1$s <- %2$s".formatted(
", t%1$s <- %2$s | true\n".formatted(
intermediateTempVariableCounter,
accessPathToCurrentShape
)
Expand All @@ -2231,7 +2231,7 @@ private TokenTree modifiesClauseForPathToReference(
modifiesClause =
modifiesClause.append(
TokenTree.of(
", t%1$s <- %2$s.Values".formatted(
", t%1$s <- %2$s.Values | true\n".formatted(
intermediateTempVariableCounter,
accessPathToCurrentShape
)
Expand Down

0 comments on commit 55c68f4

Please sign in to comment.