mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 14:30:27 +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();
|
|
}
|