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