aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch13/13.0/13_4-17gs.js
blob: 67acccecea2612e40ad1ae9e40dd6a913c40b183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12


/**
 * @path ch13/13.0/13_4-17gs.js
 * @description Strict Mode - SourceElements is evaluated as strict mode code when a Function constructor is contained in strict mode code
 * @onlyStrict
 * @negative NotEarlyError
 */

"use strict";
var _13_4_17_fun = new Function('eval = 42;');
throw NotEarlyError;