2011-09-25 08:38:17 -07:00

13 lines
311 B
JavaScript

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