de28a41caa
* Show function docs when cursor is in args of the function call * Show constructor docs when cursor is in args of the constructor call * Show function docs when cursor is in args of the kt function call * Add some tests * Use JavaDocumentationProvider to fetch java method document * Support caret in params #KT-32163 fixed
8 lines
148 B
Java
Vendored
8 lines
148 B
Java
Vendored
class TestWithParen {
|
|
/**
|
|
* Java Method
|
|
*/
|
|
public static Object[] foo(String str, int num) {
|
|
return new Object[0];
|
|
}
|
|
} |