DEBSOURCES
Skip Quicknav
sources / node-rollup / 3.15.0-1%2Bdeb12u1 / test / function / samples / cyclic-assignments / main.js
12345678910
let a = { foo: () => {}, bar: () => () => {} }; let b = a; a = b; a.foo = () => {}; a.foo(); b = b; b.bar = () => () => {}; b.bar()();