mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
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();
|
|
}
|