enhance conditionals (#5703)

This commit is contained in:
Alex Lam S.L
2022-10-08 02:59:33 +01:00
committed by GitHub
parent 4a1da492dd
commit a391897388
2 changed files with 17 additions and 7 deletions

View File

@@ -127,7 +127,7 @@ if_return: {
if (w) {
if (y) return;
} else if (z) return;
return x != y && (x && w(), y && z()), !0;
return x != y && (x && w(), y) && z(), !0;
}
}
}