mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 11:00:04 +07:00
Java: Improved completion for arguments of getField() and getMethod() - extract the type information from forName() and getClass() to provide code assistance (IDEA-167250)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
class Main {
|
||||
void foo() {
|
||||
bar().getClass().getField("<caret>");
|
||||
}
|
||||
Test bar() { return null; }
|
||||
}
|
||||
|
||||
class Test {
|
||||
public int num;
|
||||
public int num2;
|
||||
int num3;
|
||||
}
|
||||
Reference in New Issue
Block a user