rust/crates/rust-analyzer/src
Matthias Krüger 64b91393b8 remove uselessly wrapped ?s. (clippy::meedless_question_mark
let x = Some(3);

let y = Some(x?);
can just be:
let y = x
2021-03-17 02:19:40 +01:00
..
bin Add no-sysroot flag for analysis-stats 2021-03-14 18:31:14 +08:00
cli Add no-sysroot flag for analysis-stats 2021-03-14 18:31:14 +08:00
diagnostics don't clone types that are copy (clippy::clone_on_copy) 2021-03-17 01:56:31 +01:00
caps.rs Start LSP 3.17 support 2021-02-14 14:51:29 -05:00
cargo_target_spec.rs More maintainable config 2021-01-06 15:39:28 +03:00
cli.rs Split pub fn cargo_load into pub fn load_workspace_at and pub fn load_workspace 2021-02-16 16:37:52 +01:00
config.rs Enable proc-macros by default 2021-03-15 18:19:08 +03:00
diagnostics.rs Avoid transmitting unchanged diagnostics 2021-02-17 12:45:17 +01:00
diff.rs
dispatch.rs
document.rs
from_proto.rs Fix bitrotted module name 2021-02-16 19:17:32 +03:00
global_state.rs Fix bitrotted module name 2021-02-16 19:17:32 +03:00
handlers.rs remove uselessly wrapped ?s. (clippy::meedless_question_mark 2021-03-17 02:19:40 +01:00
lib.rs Fix bitrotted module name 2021-02-16 19:17:32 +03:00
line_index.rs Fix bitrotted module name 2021-02-16 19:17:32 +03:00
lsp_ext.rs Apply review suggestions 2021-03-11 17:39:41 +03:00
lsp_utils.rs avoid converting types into themselves via .into() (clippy::useless-conversion) 2021-03-17 01:27:56 +01:00
main_loop.rs Merge #7799 2021-03-13 13:50:35 +00:00
markdown.rs Fixed typos in tests 2021-01-09 15:41:29 +01:00
op_queue.rs Async Loading outdir and proc-macro 2021-01-29 01:04:14 +08:00
reload.rs Revert "Support disabling rustc build scripts" 2021-03-08 16:37:52 +00:00
request_metrics.rs
semantic_tokens.rs Add a semantic token type for char literals 2021-02-05 23:46:39 +00:00
thread_pool.rs
to_proto.rs avoid converting types into themselves via .into() (clippy::useless-conversion) 2021-03-17 01:27:56 +01:00