mirror of https://github.com/tc39/test262.git
11 lines
134 B
JavaScript
11 lines
134 B
JavaScript
|
function foo() {
|
||
|
return function () {
|
||
|
eval();
|
||
|
}
|
||
|
}
|
||
|
noInline(foo);
|
||
|
|
||
|
for (let i = 0; i < 100000; ++i) {
|
||
|
foo();
|
||
|
}
|