rust-analyzer/crates/proc_macro_api/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
..
lib.rs Add test for proc-macro meta info retrieval 2021-03-15 23:38:22 +08:00
msg.rs Fixed typos in code comments 2021-01-09 15:41:29 +01:00
process.rs remove uselessly wrapped ?s. (clippy::meedless_question_mark 2021-03-17 02:19:40 +01:00
rpc.rs avoid converting types into themselves via .into() (clippy::useless-conversion) 2021-03-17 01:27:56 +01:00
version.rs Add test for proc-macro meta info retrieval 2021-03-15 23:38:22 +08:00