aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/chapter10/10.4/10.4.2/10.4.2.1-1gs.js
blob: fbe67dd757a4ae011e37ac94830e508d896eead5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13


/**
 * @path chapter10/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;