rust/tests
Guillem Nieto e0ccc9d9af Add slow zero-filled vector initialization lint
Add lint to detect slow zero-filled vector initialization. It detects
when a vector is zero-filled with extended with `repeat(0).take(len)`
or `resize(len, 0)`.
This zero-fillings are usually slower than simply using `vec![0; len]`.
2018-11-25 14:34:23 -08:00
..
auxiliary Add license header to Rust files 2018-10-06 09:43:08 -07:00
run-pass rust-lang-nursery/rust-clippy => rust-lang/rust-clippy 2018-11-22 04:40:09 +01:00
ui Add slow zero-filled vector initialization lint 2018-11-25 14:34:23 -08:00
ui-toml Stabilize tool lints 2018-10-11 12:16:22 +02:00
compile-test.rs compiletest: clean rmeta data (from "cargo check") before running compiletest. 2018-10-29 12:29:40 +01:00
dogfood.rs clippy: fix pedantic warnings and run clippy::pedantic lints on the codebase. 2018-11-02 12:16:43 +01:00
matches.rs Add license header to Rust files 2018-10-06 09:43:08 -07:00
needless_continue_helpers.rs Add license header to Rust files 2018-10-06 09:43:08 -07:00
versioncheck.rs Add license header to Rust files 2018-10-06 09:43:08 -07:00