mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
This was needed to show the doc as if the variable was referenced. In the new implementation we show the same doc info regardless whether the target under caret is referenced or declared, but this handler made GTDU believe that the variable was referenced, and GTDU was choosing navigation to the referenced target instead of showing usages. GitOrigin-RevId: 78e3554df87d564aeea04f707a0fa1309031912f
7 lines
75 B
Java
7 lines
75 B
Java
class UsageSample {
|
|
|
|
public void foo() {
|
|
var <caret>a = "aaa";
|
|
}
|
|
}
|