aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/ecma/try_catch.js
blob: b5e9f85cc5b6b520ce13ecb2d80cc825027543f7 (plain) (blame)
1
2
3
4
5
6
7
8
try {
  throw Error()
} catch (err) {
  throw error
} finally {
  console.log("42")
}