]> git.lizzy.rs Git - rust.git/commit
Move LSP bits from flycheck to rust-analyzer
authorAleksey Kladov <aleksey.kladov@gmail.com>
Thu, 14 May 2020 23:51:48 +0000 (01:51 +0200)
committerAleksey Kladov <aleksey.kladov@gmail.com>
Thu, 14 May 2020 23:52:25 +0000 (01:52 +0200)
commit220813dcb0881ff199619c11eb34a39a6de0f67a
treebf2bcdce03889a356b37bfe29253de4228ded6ea
parent12d82687cd600ec81bf3027661135e5f0d4ad4bd
Move LSP bits from flycheck to rust-analyzer

There should be only one place that knows about LSP, and that place is
right before we spit JSON on stdout.
26 files changed:
Cargo.lock
crates/ra_flycheck/Cargo.toml
crates/ra_flycheck/src/conv.rs [deleted file]
crates/ra_flycheck/src/conv/snapshots/ra_flycheck__conv__test__snap_clippy_pass_by_ref.snap [deleted file]
crates/ra_flycheck/src/conv/snapshots/ra_flycheck__conv__test__snap_handles_macro_location.snap [deleted file]
crates/ra_flycheck/src/conv/snapshots/ra_flycheck__conv__test__snap_macro_compiler_error.snap [deleted file]
crates/ra_flycheck/src/conv/snapshots/ra_flycheck__conv__test__snap_multi_line_fix.snap [deleted file]
crates/ra_flycheck/src/conv/snapshots/ra_flycheck__conv__test__snap_rustc_incompatible_type_for_trait.snap [deleted file]
crates/ra_flycheck/src/conv/snapshots/ra_flycheck__conv__test__snap_rustc_mismatched_type.snap [deleted file]
crates/ra_flycheck/src/conv/snapshots/ra_flycheck__conv__test__snap_rustc_unused_variable.snap [deleted file]
crates/ra_flycheck/src/conv/snapshots/ra_flycheck__conv__test__snap_rustc_wrong_number_of_parameters.snap [deleted file]
crates/ra_flycheck/src/conv/test.rs [deleted file]
crates/ra_flycheck/src/lib.rs
crates/rust-analyzer/Cargo.toml
crates/rust-analyzer/src/diagnostics.rs
crates/rust-analyzer/src/diagnostics/snapshots/rust_analyzer__diagnostics__to_proto__tests__snap_clippy_pass_by_ref.snap [new file with mode: 0644]
crates/rust-analyzer/src/diagnostics/snapshots/rust_analyzer__diagnostics__to_proto__tests__snap_handles_macro_location.snap [new file with mode: 0644]
crates/rust-analyzer/src/diagnostics/snapshots/rust_analyzer__diagnostics__to_proto__tests__snap_macro_compiler_error.snap [new file with mode: 0644]
crates/rust-analyzer/src/diagnostics/snapshots/rust_analyzer__diagnostics__to_proto__tests__snap_multi_line_fix.snap [new file with mode: 0644]
crates/rust-analyzer/src/diagnostics/snapshots/rust_analyzer__diagnostics__to_proto__tests__snap_rustc_incompatible_type_for_trait.snap [new file with mode: 0644]
crates/rust-analyzer/src/diagnostics/snapshots/rust_analyzer__diagnostics__to_proto__tests__snap_rustc_mismatched_type.snap [new file with mode: 0644]
crates/rust-analyzer/src/diagnostics/snapshots/rust_analyzer__diagnostics__to_proto__tests__snap_rustc_unused_variable.snap [new file with mode: 0644]
crates/rust-analyzer/src/diagnostics/snapshots/rust_analyzer__diagnostics__to_proto__tests__snap_rustc_wrong_number_of_parameters.snap [new file with mode: 0644]
crates/rust-analyzer/src/diagnostics/to_proto.rs [new file with mode: 0644]
crates/rust-analyzer/src/main_loop.rs
crates/rust-analyzer/src/world.rs