Source code

Revision control

Copy as Markdown

Other Tools

for (var i = 0; i < 10; i++) {
x = new ArrayBuffer(4)
x.f = (function() {})
new Uint16Array(x).set(JSON.parse)
gcslice()
}
if (!this.SharedArrayBuffer)
quit(0);
for (var i = 0; i < 10; i++) {
x = new SharedArrayBuffer(4)
x.f = (function() {})
new Uint16Array(x).set(JSON.parse)
gcslice()
}