AX: AXIsolatedTree::updateChildren sometimes fails to update isolated subtrees when...
[webkit.git] / JSTests / get-my-argument-by-val-negative-2.js
blob1c159ec0a7cf0158ce0066d5cdc6bc51badf59fe
1 function assert(b) {
2     if (!b)
3         throw new Error;
6 function main() {
7     let result;
9     const v13 = [0, 0]; 
10     Object.prototype[-80887344] = v13;
12     const func = function func(i) {
13         result = arguments[i];
14     };  
15     noInline(func);
17     for (let v30 = 0; v30 < 10000; v30++) {
18         func(3);
19     }   
21     func(-80887344);
22     assert(result === v13);
24 noDFG(main);
25 main();