enhance if_return (#5518)

This commit is contained in:
Alex Lam S.L
2022-06-23 17:52:22 +01:00
committed by GitHub
parent 933ca9ddd8
commit 9f57920566
4 changed files with 187 additions and 4 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;
}
}
}