We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found this while implementing signature help in ycmd, and repro'd in visual studio code.
Steps to repro:
import java.util.function.Function; public class SignatureHelp { public SignatureHelp( String signature ) { this.test( (s) -> s ); //. this.test( } public void test( Function<String,String> f ) { } }
this.test(
(
Expected result:
void test( Function<....> )
Actual result:
Corroloary:
The text was updated successfully, but these errors were encountered:
Related issue - #1039
Sorry, something went wrong.
Fixed within #1063
snjeza
No branches or pull requests
I found this while implementing signature help in ycmd, and repro'd in visual studio code.
Steps to repro:
this.test(
, and re-type the(
Expected result:
void test( Function<....> )
function is proposedActual result:
Corroloary:
this.test(
before the lambda works as expected.The text was updated successfully, but these errors were encountered: