Files
babel/packages/babel-generator/test/fixtures/comments/try-block-line-comment/expected.js
Henry Zhu 0f823beeb1 Newlines in fixtures (#6044)
* write newlines for fixtures

* rerun fixtures
2017-08-02 15:35:29 -04:00

10 lines
98 B
JavaScript

try {} //
finally {}
try {} catch (e) {} //
finally {}
{
try {} catch (e) {} //
finally {}
}