mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
selected expression is not phisycal and corresponding source expression should be checked if it is located in the specified block GitOrigin-RevId: d44c79337a8309917886261573bc3fede8d21e4b
9 lines
205 B
Java
9 lines
205 B
Java
class C {
|
|
void f(boolean b) {
|
|
if (b) {
|
|
System.out.println("<selection>ab</selection>c");
|
|
System.out.println("ab");
|
|
}
|
|
System.out.println("abcde");
|
|
}
|
|
} |