Skip to content
Snippets Groups Projects
13_4-17gs.js 318 B
Newer Older


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