Setup C adapter with test binary
This commit is contained in:
parent
4d24eae901
commit
f81ccbd652
5 changed files with 40 additions and 24 deletions
|
@ -46,7 +46,7 @@ pub struct LanguageServerBinary {
|
|||
#[derive(Debug, Clone, Deserialize)]
|
||||
pub struct LanguageServerBinaries {
|
||||
pub binary: LanguageServerBinary,
|
||||
pub installation_test_binary: LanguageServerBinary,
|
||||
pub installation_test_binary: Option<LanguageServerBinary>,
|
||||
}
|
||||
|
||||
pub struct LanguageServer {
|
||||
|
@ -162,7 +162,7 @@ impl LanguageServer {
|
|||
stdin,
|
||||
stout,
|
||||
Some(server),
|
||||
Some(binaries.installation_test_binary),
|
||||
binaries.installation_test_binary,
|
||||
root_path,
|
||||
code_action_kinds,
|
||||
cx,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue