repo.or.cz
/
qtwebkit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Update ReadMe.md
[qtwebkit.git]
/
JSTests
/
microbenchmarks
/
arguments-strict-mode.js
blob
c941ff4a7ea2f3e8bcce0628c139e4ba9421b2cd
1
function foo() {
2
"use strict";
3
return [...arguments];
4
5
}
6
7
noInline(foo);
8
9
for (var i = 0; i < 200000; ++i) {
10
var result = foo(i);
11
if (result[0] != i)
12
throw "Error: bad result: " + result;
13
}