]> git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/put-by-id-strict-build-list-order.js
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / tests / stress / put-by-id-strict-build-list-order.js
1 function foo(o) {
2 "use strict";
3 o.f = 42;
4 }
5
6 noInline(foo);
7
8 var a = {};
9 foo(a);
10 foo(a);
11 a = {f : 3};
12 foo(a);
13
14 var b = {};
15 foo(b);
16 foo(b);