prettier/tests/comments/try.js

14 lines
130 B
JavaScript

// comment 1
try {
// comment 2
}
// comment 3
catch(e) {
// comment 4
}
// comment 5
finally // comment 6
{
// comment 7
}