mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-21 05:51:25 +07:00
method refs IDEA-112323
This commit is contained in:
@@ -393,7 +393,7 @@ public class PsiMethodReferenceExpressionImpl extends PsiReferenceExpressionBase
|
||||
}
|
||||
|
||||
private PsiSubstitutor getSubstitutor(PsiType type) {
|
||||
final PsiClassType.ClassResolveResult resolveResult = PsiUtil.resolveGenericsClassInType(type);
|
||||
final PsiClassType.ClassResolveResult resolveResult = PsiUtil.resolveGenericsClassInType(GenericsUtil.eliminateWildcards(type));
|
||||
PsiSubstitutor psiSubstitutor = resolveResult.getSubstitutor();
|
||||
if (type instanceof PsiClassType) {
|
||||
final PsiClass psiClass = resolveResult.getElement();
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
class Test1
|
||||
{
|
||||
public static void main(Stream<Map.Entry<String, Long>> stream)
|
||||
{
|
||||
Stream<String> map = stream.map(Map.Entry::getKey);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
Map<String, Long> storage = new HashMap<>();
|
||||
storage.put("One", 1l);
|
||||
List<String> keys = storage
|
||||
.entrySet()
|
||||
.stream()
|
||||
.map(Map.Entry::getKey)
|
||||
.collect(Collectors.toList());
|
||||
keys.stream().forEach(System.out::println);
|
||||
}
|
||||
}
|
||||
@@ -83,6 +83,10 @@ public class MethodRefHighlightingTest extends LightDaemonAnalyzerTestCase {
|
||||
doTest();
|
||||
}
|
||||
|
||||
public void testIDEA112323() throws Exception {
|
||||
doTest();
|
||||
}
|
||||
|
||||
private void doTest() {
|
||||
doTest(false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user