show param info: highlight overload vararg method

This commit is contained in:
Anna Kozlova
2013-12-12 20:05:37 +04:00
parent 8db186e18a
commit 6f5e28c4d0
3 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
class Test {
{
refresh(<caret>false, false, null, "");
}
public final void refresh(boolean async, boolean recursive, Runnable finishRunnable, String... files) {
}
public final void refresh(boolean async, boolean recursive, Runnable finishRunnable, Integer files) {
}
}