Add a test that exercises CreateVariableEnvironment capacity when a function has parameter expressions and non-local var bindings.
5 lines
58 B
JavaScript
5 lines
58 B
JavaScript
function f(x = 1) {
|
|
var a, b, c;
|
|
eval("");
|
|
}
|
|
f();
|