Skip to content
Snippets Groups Projects
Commit 2903a4c8 authored by André Bargull's avatar André Bargull
Browse files

Revert 12.14-1 and 12.14-2 (Fixes #120)

Assume tests run with Annex B semantics enabled. (Fixes #120)
parent 49abae4f
No related branches found
No related tags found
No related merge requests found
...@@ -7,14 +7,12 @@ ...@@ -7,14 +7,12 @@
/*--- /*---
es5id: 12.14-1 es5id: 12.14-1
description: > description: >
var initializer in catch with same name as catch parameter is a catch doesn't change declaration scope - var initializer in catch
SyntaxError with same name as catch parameter changes parameter
negative: ^((?!NotEarlyError).)*$ features: [AnnexB]
includes: [runTestCase.js] includes: [runTestCase.js]
---*/ ---*/
throw NotEarlyError;
function testcase() { function testcase() {
foo = "prior to throw"; foo = "prior to throw";
try { try {
......
...@@ -7,14 +7,12 @@ ...@@ -7,14 +7,12 @@
/*--- /*---
es5id: 12.14-2 es5id: 12.14-2
description: > description: >
var initializer in catch with same name as catch parameter is a catch doesn't change declaration scope - var initializer in catch
SyntaxError with same name as catch parameter changes parameter
negative: ^((?!NotEarlyError).)*$ features: [AnnexB]
includes: [runTestCase.js] includes: [runTestCase.js]
---*/ ---*/
throw NotEarlyError;
function testcase() { function testcase() {
function capturedFoo() {return foo}; function capturedFoo() {return foo};
foo = "prior to throw"; foo = "prior to throw";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment