[K/JS] Optimize logical operators generating

This commit is contained in:
Artem Kobzar
2024-02-23 15:16:31 +00:00
committed by Space Team
parent 425381ddf9
commit be47632609
10 changed files with 63 additions and 2 deletions
@@ -0,0 +1,3 @@
function test() {
return (!a || (b && c)) && foo() || bar();
}