Skip to content
Snippets Groups Projects
13_4-5gs.js 320 B
Newer Older
  • Learn to ignore specific revisions
  • 
    
    /**
     * @path ch13/13.0/13_4-5gs.js
     * @description Strict Mode - SourceElements is evaluated as strict mode code when a FunctionDeclaration is contained in strict mode code
     * @onlyStrict
     * @negative ^((?!NotEarlyError).)*$
     */
    
    "use strict";
    throw NotEarlyError;
    function _13_0_4_5_fun() { eval = 42; };