Update ReadMe.md
[qtwebkit.git] / JSTests / microbenchmarks / arguments-strict-mode.js
blobc941ff4a7ea2f3e8bcce0628c139e4ba9421b2cd
1 function foo() {
2     "use strict";
3     return [...arguments];
7 noInline(foo);
9 for (var i = 0; i < 200000; ++i) {
10     var result = foo(i);
11     if (result[0] != i)
12         throw "Error: bad result: " + result;