10.1.1-31-s.js (582B)
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-31-s 6 description: > 7 Strict Mode - Function code of built-in Function constructor 8 contains Use Strict Directive which appears in the middle of the 9 block 10 flags: [noStrict] 11 ---*/ 12 13 14 var funObj = new Function("a", "eval('public = 1;'); 'use strict'; anotherVariable = 2;"); 15 funObj(); 16 17 assert.sameValue(public, 1, 'public'); 18 assert.sameValue(anotherVariable, 2, 'anotherVariable'); 19 20 reportCompare(0, 0);