13.1-4gs-strict.js (504B)
1 // |reftest| error:SyntaxError 2 'use strict'; 3 // Copyright (c) 2012 Ecma International. All rights reserved. 4 // This code is governed by the BSD license found in the LICENSE file. 5 6 /*--- 7 es5id: 13.1-4gs 8 description: > 9 Strict Mode - SyntaxError is thrown if the identifier 'arguments' 10 appears within a FormalParameterList of a strict mode 11 FunctionExpression 12 negative: 13 phase: parse 14 type: SyntaxError 15 flags: [onlyStrict] 16 ---*/ 17 18 $DONOTEVALUATE(); 19 20 var _13_1_4_fun = function (arguments) { };