Remove erroneous remnant $ERROR calls from negative SyntaxError tests

This commit is contained in:
Rick Waldron 2018-04-26 13:39:36 -04:00
parent 42ca7bbf93
commit 64cdeaf1ed
3 changed files with 0 additions and 6 deletions

View File

@ -13,6 +13,4 @@ negative:
throw "Test262: This statement should not be evaluated.";
$ERROR('This code should not be executed.');
try { } catch ([x, x]) {}

View File

@ -14,6 +14,4 @@ features: [let]
throw "Test262: This statement should not be evaluated.";
$ERROR('This code should not be executed.');
try { } catch (x) { let x; }

View File

@ -18,6 +18,4 @@ negative:
throw "Test262: This statement should not be evaluated.";
$ERROR('This code should not be executed.');
try { } catch (x) { for (var x of []) {} }