mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Allow passing additional prefix to CompletionServiceImpl.handleCompletionItemSelected()
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
class A extends Base{
|
||||
int _field;
|
||||
void _method(){}
|
||||
|
||||
void foo(){
|
||||
int _local1;
|
||||
int _local2;
|
||||
_local1
|
||||
int _local3;
|
||||
}
|
||||
}
|
||||
|
||||
class Base{
|
||||
void _baseMethod(){}
|
||||
int _baseField;
|
||||
|
||||
private void privateMethod(){}
|
||||
private int privateField;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user