mirror of https://github.com/tc39/test262.git
21 lines
762 B
JavaScript
21 lines
762 B
JavaScript
|
// This file was procedurally generated from the following sources:
|
||
|
// - src/direct-eval-code/arrow-func-declare-arguments-assign.case
|
||
|
// - src/direct-eval-code/arrow-func/fn-body-cntns-arguments-var-bind.template
|
||
|
/*---
|
||
|
description: Declare "arguments" and assign to it in direct eval code (Declare |arguments| when the function body contains an |arguments| var-binding.)
|
||
|
esid: sec-evaldeclarationinstantiation
|
||
|
flags: [generated, noStrict]
|
||
|
---*/
|
||
|
|
||
|
const oldArguments = globalThis.arguments;
|
||
|
let count = 0;
|
||
|
const f = (p = eval("var arguments = 'param'")) => {
|
||
|
var arguments = "local";
|
||
|
assert.sameValue(arguments, "local");
|
||
|
|
||
|
count++;
|
||
|
}
|
||
|
f();
|
||
|
assert.sameValue(count, 1);
|
||
|
assert.sameValue(globalThis.arguments, oldArguments, "globalThis.arguments unchanged");
|