summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/language/statements/try/catch-redeclared-var-statement-captured.js
blob: b9865d0a03a23805c969094fcad46d2e48669ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 12.14-2
es6id: B.3.5
description: >
    catch doesn't change declaration scope - var initializer in catch
    with same name as catch parameter changes parameter
---*/

  function capturedFoo() {return foo};
  foo = "prior to throw";
  try {
    throw new Error();
  }
  catch (foo) {
    var foo = "initializer in catch";
  }

assert.sameValue(capturedFoo(), "prior to throw");

reportCompare(0, 0);