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

Assume tests run with Annex B semantics enabled. (Fixes #120)
This commit is contained in:
André Bargull 2014-12-11 18:45:54 +01:00
parent 49abae4f5e
commit 2903a4c885
2 changed files with 6 additions and 10 deletions

View File

@ -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 {

View File

@ -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";