blob: c7e3f46c9a827e2b9d90a65b5bf94fae2b78db36 (
plain)
1
2
3
4
5
6
7
8
9
10
|
try {
function varying(mapColor, keyColor) {
enqueueMark(`set-color-${keyColor}`);
enqueueMark("yield");
startgc(100000);
}
for (const mapColor of ['gray', 'black'])
varying(mapColor, 0x7fff);
} catch (exc) {}
oomAfterAllocations(100);
|