28 lines
560 B
JavaScript
28 lines
560 B
JavaScript
|
function mutate(x, y) {}
|
||
|
function cond(x) {}
|
||
|
function Component(props) {
|
||
|
let a = {};
|
||
|
let b = {};
|
||
|
let c = {};
|
||
|
let d = {};
|
||
|
while (true) {
|
||
|
let z = a;
|
||
|
a = b;
|
||
|
b = c;
|
||
|
c = d;
|
||
|
d = z;
|
||
|
a |> mutate(%, b);
|
||
|
if (a |> cond(%)) {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// all of these tests are seemingly readonly, since the values are never directly
|
||
|
// mutated again. but they are all aliased by `d`, which is later modified, and
|
||
|
// these are therefore mutable references:
|
||
|
if (a) {}
|
||
|
if (b) {}
|
||
|
if (c) {}
|
||
|
if (d) {}
|
||
|
d |> mutate(%, null);
|
||
|
}
|