mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
- more tests - small optimization - preserve first comment in created implicitly declared classes - fixed java docs - move highlighting to the whole declaration GitOrigin-RevId: e7ea706151f09852473e31d3831bb3008da62475
14 lines
275 B
Java
14 lines
275 B
Java
// "Convert into implicitly declared class" "true-preview"
|
|
|
|
/**
|
|
* comments
|
|
*/
|
|
|
|
public /*comments2*/ class beforeSi<caret>mpleWithComments {
|
|
/*comments3*/
|
|
public static void main(String[] args) {
|
|
//comments4
|
|
System.out.println("Hello, world!");
|
|
}
|
|
}
|
|
//comments5 |