Files
openide/java/java-tests/testData/codeInsight/folding/EndOfLineComments.java
Denis Zhdanov ba485ee898 IDEA-63303 Collapsing of multiline //-style comment feature request
1. Added ability to configure IJ editor to auto-collapse multiple subsequent end of line comments;
2. Corresponding test is added;
2011-01-17 15:51:25 +03:00

14 lines
305 B
Java

class Test {
<fold text='//...'>// class-level folding1
// class-level folding2</fold>
public void foo() <fold text='{...}'>{
<fold text='//...'>// method-level folding1
// method-level folding2</fold>
int i = 1;
// method-level folding2
}</fold>
// class-level folding3
}