blob: be4289f93b396790d20d8481a7f02c64af7db2f0 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function assert(b) {
if (!b)
throw new Error;
}
function test1() {
function getMultiline(o) {
return o.multiline;
}
noInline(getMultiline);
RegExp.foo = 42;
const o = {};
o.__proto__ = RegExp;
RegExp.multiline = false;
for (let i = 0; i < 5000000; ++i) {
assert(getMultiline(o) === false);
}
delete RegExp.foo;
for (let i = 0; i < 5000000; ++i) {
assert(getMultiline(o) === false);
}
}
test1();