KT-12275 Add JS optimization that transforms the following code
```
do {
X
if (B) break;
} while (A)
```
to
```
do {
X
} while (!B && A)
```
Add inversion that takes boolean expression and applies negation to it, simplifying if possible (like !!a => a).
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
var global = "";
|
||||
|
||||
function foo(x) {
|
||||
global += x;
|
||||
return x;
|
||||
}
|
||||
|
||||
function box() {
|
||||
var i = 0;
|
||||
do {
|
||||
++i;
|
||||
global += ";";
|
||||
} while (foo(i) < 10);
|
||||
|
||||
if (global != ";1;2;3;4;5;6;7;8;9;10") return "fail: " + global;
|
||||
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user