blob: 86f35fc6dbf4264789a18c820c6965f214f85396 [file] [log] [blame] [edit]
function test(object, value) {
return object[value];
}
noInline(test);
var proxy = new Proxy({}, {});
var object = { hello: 42 };
for (var i = 0; i < testLoopCount; ++i) {
test(proxy, "hello");
test(object, "hello");
}