calc expected types for the entire live template range

This commit is contained in:
peter
2012-11-02 19:10:11 +01:00
parent f2862a3c9f
commit d53f535759
4 changed files with 28 additions and 9 deletions
@@ -0,0 +1,9 @@
import java.util.Arrays;
import java.util.List;
class Foo {
static void foo(List<String> ls) {
List<String> ls2 = Arrays.asList(ls.toArray(new String[ls.size()])<caret>);
}
}
@@ -0,0 +1,9 @@
import java.util.Arrays;
import java.util.List;
class Foo {
static void foo(List<String> ls) {
List<String> ls2 = Arrays.asList(<caret>);
}
}