blob: d405f720d5fc5759e0e0904299e6f3fd6ca79660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (C) 2017 Lucas Azzola. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Lucas Azzola
esid: pending
description: try/catch syntax with omission of the catch binding
features: [optional-catch-binding]
info: |
Optional Catch Binding
Catch[Yield, Await, Return]:
(...)
catch Block[?Yield, ?Await, ?Return]
---*/
try {} catch {}
reportCompare(0, 0);
|