aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/chapter12/12.14/12.14.1/12.14.1-1gs.js
blob: 6cb5691237bfd5096c8c7856bfda15beae2f31e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12


/**
 * @path chapter12/12.14/12.14.1/12.14.1-1gs.js
 * @description Strict Mode - SyntaxError is thrown if a TryStatement with a Catch occurs within strict code and the Identifier of the Catch production is eval
 * @onlyStrict
 * @negative NotEarlyError
 */

"use strict";
throw NotEarlyError;
try { } catch (eval) { }