test262/test/annexB/language/statements/try/catch-redeclared-for-var.js

29 lines
894 B
JavaScript

// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-variablestatements-in-catch-blocks
es6id: B3.5
description: Re-declaration of catch parameter (for-in statement)
info: >
It is a Syntax Error if any element of the BoundNames of CatchParameter
also occurs in the VarDeclaredNames of Block, unless that element is only
bound by a VariableStatement or the VariableDeclarationList of a for
statement, or the ForBinding of a for-in statement.
---*/
var before, during, after;
try {
throw 'exception';
} catch (err) {
before = err;
for (var err = 'loop initializer'; err !== 'increment'; err = 'increment') {
during = err;
}
after = err;
}
assert.sameValue(before, 'exception');
assert.sameValue(during, 'loop initializer');
assert.sameValue(after, 'increment');