func-decl-fn-body-cntns-arguments-func-decl-declare-arguments.js (729B)
1 // This file was procedurally generated from the following sources: 2 // - src/direct-eval-code/declare-arguments.case 3 // - src/direct-eval-code/default/func-decl/fn-body-cntns-arguments-func-decl.template 4 /*--- 5 description: Declare "arguments" and assign to it in direct eval code (Declare |arguments| when the function body contains an |arguments| function declaration.) 6 esid: sec-evaldeclarationinstantiation 7 flags: [generated, noStrict] 8 ---*/ 9 10 11 assert.sameValue("arguments" in this, false, "No global 'arguments' binding"); 12 13 function f(p = eval("var arguments")) { 14 function arguments() {} 15 } 16 assert.throws(SyntaxError, f); 17 18 19 assert.sameValue("arguments" in this, false, "No global 'arguments' binding"); 20 21 reportCompare(0, 0);