aboutsummaryrefslogtreecommitdiffstats
path: root/external/contributions/Microsoft/ietcLatest/TestCases/ch10/10.4/10.4.2/10.4.2.1-1gs.js
blob: dbf24666c120c42f5a331b5b7d50886262a5e3cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13


/**
 * @path ch10/10.4/10.4.2/10.4.2.1-1gs.js
 * @description Strict Mode - eval code cannot instantiate variable in the variable environment of the calling context that invoked the eval if the code of the calling context is strict code
 * @onlyStrict
 * @negative ^((?!NotEarlyError).)*$
 */

"use strict";
eval("var x = 7;");
x = 9;
throw NotEarlyError;