----
if (x) {
  try { a(); }
  catch (e) { b(); }
  finally { c(); }
}
----
if x
  try
    a()
  catch e
    b()
  finally
    c()
