
accidentally discovered a bug (probably) in decompiling PUSH operator in @dedaub
it translates:
_store.push(num)
to:
_store.length = _store.length + 1;
_store[_store.length + 1 - 1] = num;
but should be:
_store.length = _store.length + 1;
_store[_store.length - 1] = num;
wdyf


English









