blob: 215fcf758b12806fc59ca52c9afa48fbef3dbed2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (C) 2011 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 13.1
description: >
catch parameter shadowing let declaration
---*/
{
let a = 3;
try {
throw 'stuff2';
} catch (a) {
assert.sameValue(a, 'stuff2');
// catch parameter shadowing let declaration
a = 4;
assert.sameValue(a, 4);
}
assert.sameValue(a, 3);
}
reportCompare(0, 0);
|