Skip to content

Commit

Permalink
fixup Java: update signature help test
Browse files Browse the repository at this point in the history
  • Loading branch information
puremourning committed Jul 10, 2019
1 parent ac86d63 commit 88ba001
Showing 1 changed file with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
import java.util.function.Function;

public class SignatureHelp
{
public SignatureHelp( String signature ) {
this.test( "")
this.test( "test", "t" );
this.test( 1, "2" );
char [] data = new char[10];
String.copyValueOf( data, 1, 2 );
this.unique( 10.0 );
String s = new String( data );
}

public void test( String s, String s ) {
public void test( String s, String s1 ) {
String.copyValueOf(
}
public void test( int i, String s ) {
SignatureHelp s = new SignatureHelp(
}
public void unique( double d ) {}
}

0 comments on commit 88ba001

Please sign in to comment.