| >>> | |
| class A { | |
| foo() { | |
| // comment #1 | |
| if (comment != null && comment.end == token.offset | |
| // comment #2 | |
| && node.parent.beginToken != token) { | |
| } | |
| } | |
| } | |
| <<< | |
| class A { | |
| foo() { | |
| // comment #1 | |
| if (comment != null && | |
| comment.end == token.offset | |
| // comment #2 | |
| && | |
| node.parent.beginToken != token) {} | |
| } | |
| } |