10.1.1-30-s.js (515B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 10.1.1-30-s 6 description: > 7 Strict Mode - Function code of built-in Function constructor 8 contains Use Strict Directive which appears at the start of the 9 block 10 flags: [noStrict] 11 ---*/ 12 13 14 assert.throws(SyntaxError, function() { 15 var funObj = new Function("a", "'use strict'; eval('public = 1;');"); 16 funObj(); 17 }); 18 19 reportCompare(0, 0);