13.1-1gs-strict.js (487B)
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-1gs 8 description: > 9 Strict Mode - SyntaxError is thrown if the identifier 'eval' 10 appears within a FormalParameterList of a strict mode 11 FunctionDeclaration 12 negative: 13 phase: parse 14 type: SyntaxError 15 flags: [onlyStrict] 16 ---*/ 17 18 $DONOTEVALUATE(); 19 20 function _13_1_1_fun(eval) { }