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
description: >
var initializer in catch with same name as catch parameter is a
SyntaxError
negative: ^((?!NotEarlyError).)*$
catch doesn't change declaration scope - var initializer in catch
with same name as catch parameter changes parameter
features: [AnnexB]
includes: [runTestCase.js]
---*/
throw NotEarlyError;
function testcase() {
foo = "prior to throw";
try {

View File

@ -7,14 +7,12 @@
/*---
es5id: 12.14-2
description: >
var initializer in catch with same name as catch parameter is a
SyntaxError
negative: ^((?!NotEarlyError).)*$
catch doesn't change declaration scope - var initializer in catch
with same name as catch parameter changes parameter
features: [AnnexB]
includes: [runTestCase.js]
---*/
throw NotEarlyError;
function testcase() {
function capturedFoo() {return foo};
foo = "prior to throw";