This website requires JavaScript.
Explore
Help
Register
Sign In
MDS
/
openide
Watch
1
Star
0
Fork
0
You've already forked openide
mirror of
https://gitflic.ru/project/openide/openide.git
synced
2026-01-09 16:39:37 +07:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
1193a54876c3b9796fc62ccbe81e6f8aa0a72c46
openide
/
java
/
java-tests
/
testData
/
codeInsight
/
daemonCodeAnalyzer
/
lambda
/
mostSpecific
History
Anna Kozlova
1193a54876
warn about unused parameter if method is used locally as method reference as it could be transformed to equivalent lambda (IDEA-157988)
2016-06-29 20:32:32 +03:00
..
BothVarargs.java
…
BoxingAndOverloadResolution.java
warn about unused parameter if method is used locally as method reference as it could be transformed to equivalent lambda (IDEA-157988)
2016-06-29 20:32:32 +03:00
DifferentParamsLength.java
lambda: highlight containing method ambiguity on method name: this avoids lots of lines of lambda body to be highlighted and it would show errors even if lambda body contains errors actually caused by the ambiguity on the parent level (IDEA-141580)
2015-06-18 17:54:23 +03:00
EnsureArgTypesAreNotCalculatedDuringOverload.java
new overload resolution: first check that collected methods are potentially compatible with args; for generic methods without specified type arguments this already means that they are applicable; for non generic methods (or raw method calls) expressions should be compatible with parameter types (formal parameter types = actual types as substitutor is known) (IDEA-147798)
2015-11-20 18:22:02 +01:00
FunctionalTypeComparisonWhenMethodsAreNotGeneric.java
…
IDEA121884.java
…
IDEA121999.java
…
IDEA123352.java
…
IDEA125855.java
…
IDEA127584.java
…
IncompatibleSiteSubstitutionBounds.java
overload resolution: reject more specific inference contradicting site substitution
2015-08-26 12:08:47 +03:00
IncompleteMethodInInterface.java
lambda: highlight containing method ambiguity on method name: this avoids lots of lines of lambda body to be highlighted and it would show errors even if lambda body contains errors actually caused by the ambiguity on the parent level (IDEA-141580)
2015-06-18 17:54:23 +03:00
InferSpecificForGenericMethodWhenCallProvidesExplicitTypeArguments.java
most specific: infer specific if method is generic even if type arguments are explicitly provided
2015-02-13 18:54:03 +01:00
JDK8034223.java
isApplicability check based on pertinentToApplicability
2015-11-30 15:11:41 +01:00
JDK8042508.java
…
MostSpecificByReturnType.java
…
MostSpecificForSameFunctionalTypes.java
…
NestedLambdaSpecifics.java
…
NestedVarargs.java
…
NoReturnTypeResolutionForThrownException.java
…
RelatedSAMErasures.java
lambda: highlight containing method ambiguity on method name: this avoids lots of lines of lambda body to be highlighted and it would show errors even if lambda body contains errors actually caused by the ambiguity on the parent level (IDEA-141580)
2015-06-18 17:54:23 +03:00
SuperMethodsInExactCheck.java
…
TargetTypeParameter.java
isApplicability check based on pertinentToApplicability
2015-11-30 15:11:41 +01:00
VarargsSpecificsDuringMethodReferenceResolve.java
…
VoidConflict.java
…