mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
API for handling selected completion item actually works; added test
IDEA-CR-31904
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
class A extends Base{
|
||||
int _field;
|
||||
void _method(){}
|
||||
|
||||
void foo(){
|
||||
int _local1;
|
||||
int _local2;
|
||||
_field
|
||||
int _local3;
|
||||
}
|
||||
}
|
||||
|
||||
class Base{
|
||||
void _baseMethod(){}
|
||||
int _baseField;
|
||||
|
||||
private void privateMethod(){}
|
||||
private int privateField;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user