prettier/tests/if/comment_before_else.js

14 lines
135 B
JavaScript

if (cond) {
stuff;
} /* comment */ else if (cond) {
stuff;
}
// comment
else {
stuff;
}
if (cond) stuff;
// comment
else stuff;