git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a2bcbbf87141a2e22424b6773c04a84231eef3bc
[WebKit-https.git]
/
JSTests
/
stress
/
check-string-ident.js
1
//@ skip
2
//@ defaultNoEagerRun
3
4
const o = { baz: 20 };
5
function foo(p) {
6
o[p] = 20;
7
}
8
noInline(foo);
9
noOSRExitFuzzing(foo);
10
11
for (let i = 0; i < 1000000; i++) {
12
foo("baz");
13
}
14
15
if (numberOfDFGCompiles(foo) > 1)
16
throw new Error("We should not have to compile this function more than once.");