display in completion the explicit method type arguments that will be inserted

This commit is contained in:
peter
2011-09-19 17:36:23 +02:00
parent d96f8fe01e
commit 220e1eaad3
6 changed files with 61 additions and 39 deletions

View File

@@ -0,0 +1,11 @@
class Zoo2 {
{
foo(Key<caret>, true);
}
<T> void foo(Key<T> f, T b) { }
}
class Key<T> {
static <T> Key<T> create() {}
}

View File

@@ -6,7 +6,7 @@ class Foo {
<T> void putUserData(Key<T> key, T value) {}
{
putUserData(Key.<Object>create(<caret>), )
putUserData(Key.create(<caret>), )
}
}