This commit is contained in:
Михаил Капелько
2024-04-25 22:56:10 +03:00
parent 0607a03172
commit b6a6fec7a2
2 changed files with 3 additions and 3 deletions

View File

@@ -52,8 +52,8 @@ memory_Context memory_shouldDeselectMismatchedItems(
memory_Context c
) {
if (!(
c.recentField == "selectedItems" &&;
c.selectedItems.size() == 2;
c.recentField == "selectedItems" &&
c.selectedItems.size() == 2
)) {
c.recentField = "none";
return c;

View File

@@ -114,7 +114,7 @@ def translateStatement(s, state):
return f"{indentation})) {{"
ending = ";"
if state.isIf:
if state.isIf or state.isIfNot:
ending = ""
# Unknown.