mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 01:22:43 +02:00
Add a test that exercises CreateVariableEnvironment capacity when a function has parameter expressions and non-local var bindings.
6 lines
58 B
JavaScript
6 lines
58 B
JavaScript
function f(x = 1) {
|
|
var a, b, c;
|
|
eval("");
|
|
}
|
|
f();
|