Shea Newton
7af0c67855
Extend indexing_slicing lint
...
Hey there clippy team! I've made some assumptions in this PR and I'm not at all certain they'll look like the right approach to you. I'm looking forward to any feedback or revision requests you have, thanks!
Prior to this commit the `indexing_slicing` lint was limited to indexing/slicing operations on arrays. This meant that the scope of a really useful lint didn't include vectors. In order to include vectors in the `indexing_slicing` lint a few steps were taken.
The `array_indexing.rs` source file in `clippy_lints` was renamed to `indexing_slicing.rs` to more accurately reflect the lint's new scope. The `OUT_OF_BOUNDS_INDEXING` lint persists through these changes so if we can know that a constant index or slice on an array is in bounds no lint is triggered.
The `array_indexing` tests in the `tests/ui` directory were also extended and moved to `indexing_slicing.rs` and `indexing_slicing.stderr`.
The `indexing_slicing` lint was moved to the `clippy_pedantic` lint group.
A specific "Consider using" string was added to each of the `indexing_slicing` lint reports.
At least one of the test scenarios might look peculiar and I'll leave it up to y'all to decide if it's palatable. It's the result of indexing the array `x` after `let x = [1, 2, 3, 4];`
```
error: slicing may panic. Consider using `.get(..n)`or `.get_mut(..n)`instead
--> $DIR/indexing_slicing.rs:23:6
|
23 | &x[0..][..3];
| ^^^^^^^^^^^
```
The error string reports only on the second half's range-to, because the range-from is in bounds!
Again, thanks for taking a look.
Closes #2536
2018-06-19 16:27:08 +00:00
..
2018-05-28 14:50:41 +02:00
2018-01-12 18:33:25 +01:00
2018-03-28 23:49:32 +02:00
2018-04-24 15:18:23 -07:00
2018-04-24 15:18:23 -07:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-19 16:27:08 +00:00
2018-06-19 16:27:08 +00:00
2018-01-30 17:45:35 +01:00
2018-01-30 17:45:35 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-05-19 14:04:57 +02:00
2018-05-11 19:05:34 +02:00
2017-10-03 12:07:24 +02:00
2018-03-28 23:49:32 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-03 22:56:17 +02:00
2018-04-07 12:52:59 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-03-15 10:25:57 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-04-24 11:37:51 -07:00
2018-04-24 11:37:51 -07:00
2018-01-06 11:22:20 +01:00
2018-01-17 14:44:40 +01:00
2018-01-06 11:22:20 +01:00
2018-01-17 14:44:40 +01:00
2018-01-06 11:22:20 +01:00
2018-01-17 14:44:40 +01:00
2018-01-06 11:22:20 +01:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-12 15:06:46 +02:00
2018-06-12 15:06:46 +02:00
2018-01-11 10:28:42 +01:00
2018-06-15 16:53:34 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-04-05 04:13:14 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-02-02 02:03:21 -05:00
2018-02-06 12:22:34 -06:00
2018-03-16 09:44:20 +01:00
2018-03-16 09:44:20 +01:00
2017-10-09 23:39:45 -05:00
2018-03-28 23:49:32 +02:00
2018-05-19 14:04:57 +02:00
2018-01-17 14:44:40 +01:00
2018-05-19 14:04:57 +02:00
2018-01-17 14:44:40 +01:00
2018-02-06 13:05:20 +01:00
2018-03-03 12:25:20 -05:00
2018-06-18 10:29:25 +01:00
2018-06-18 10:29:25 +01:00
2018-06-14 09:11:46 +01:00
2018-04-11 02:50:04 -07:00
2018-04-11 02:50:04 -07:00
2018-03-28 23:49:32 +02:00
2018-03-28 23:49:32 +02:00
2018-05-11 13:20:39 +02:00
2018-01-17 14:44:40 +01:00
2018-05-11 13:20:39 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-01-30 10:35:35 +09:00
2018-03-28 23:49:32 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-01-23 15:29:31 +01:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-12 08:25:10 +02:00
2018-06-12 08:25:10 +02:00
2018-06-09 10:21:26 +02:00
2018-01-14 22:53:00 -06:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-03-30 12:36:50 +02:00
2018-01-29 10:03:52 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-03-27 06:34:11 +02:00
2018-01-17 14:44:40 +01:00
2018-05-11 13:20:39 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-03-23 20:26:52 +02:00
2018-03-23 20:26:52 +02:00
2017-10-14 12:34:37 +03:00
2018-01-17 14:44:40 +01:00
2018-05-11 13:20:39 +02:00
2018-06-15 16:53:34 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-05-19 14:04:57 +02:00
2018-05-05 09:45:14 -07:00
2017-10-14 21:42:14 -03:00
2018-01-17 14:44:40 +01:00
2017-11-29 17:20:00 +01:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-11-06 21:34:30 +11:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-03-13 11:38:21 +01:00
2018-05-19 14:04:57 +02:00
2018-05-29 10:56:58 +02:00
2018-04-12 08:21:03 +02:00
2018-04-12 08:21:03 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-10 00:14:47 -05:00
2018-01-17 14:44:40 +01:00
2017-10-04 22:26:41 +09:00
2018-01-17 14:44:40 +01:00
2018-01-23 15:29:31 +01:00
2018-01-23 15:29:31 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-05-29 21:28:52 +02:00
2018-05-29 21:28:52 +02:00
2018-06-14 23:13:12 +01:00
2018-05-29 10:56:58 +02:00
2017-10-03 12:07:24 +02:00
2018-03-03 12:25:20 -05:00
2018-04-27 14:00:43 +02:00
2018-04-24 17:56:13 +01:00
2018-06-15 16:53:34 +02:00
2018-01-17 14:44:40 +01:00
2018-06-15 16:53:34 +02:00
2018-04-03 16:41:30 +02:00
2018-01-29 10:03:52 +01:00
2018-01-29 10:03:52 +01:00
2017-11-14 14:56:00 +01:00
2018-01-17 14:44:40 +01:00
2017-11-14 14:56:00 +01:00
2018-03-28 23:49:32 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-02-02 01:53:48 -05:00
2018-02-02 01:53:48 -05:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-05-28 14:43:44 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-05-06 23:54:05 +02:00
2018-05-06 23:54:05 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-19 23:18:53 +08:00
2018-06-19 23:18:53 +08:00
2018-05-28 14:23:06 +02:00
2018-05-28 14:43:44 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-04-15 13:01:10 +02:00
2018-04-07 10:23:27 +02:00
2018-04-07 10:23:27 +02:00
2018-04-07 10:23:27 +02:00
2018-05-29 10:56:58 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-14 23:13:12 +01:00
2018-06-14 23:13:12 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-15 16:53:34 +02:00
2018-01-17 14:44:40 +01:00
2018-05-11 13:20:39 +02:00
2018-01-17 14:44:40 +01:00
2017-11-14 14:56:00 +01:00
2018-01-17 14:44:40 +01:00
2018-06-15 16:53:34 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-15 16:53:34 +02:00
2018-04-05 18:13:39 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-05-29 10:56:58 +02:00
2018-05-29 10:56:58 +02:00
2017-11-07 15:32:52 +01:00
2018-05-29 10:56:58 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-03 21:46:09 +02:00
2018-06-03 21:46:09 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-02-25 18:25:31 +01:00
2018-03-29 13:41:53 +02:00
2018-05-11 13:20:39 +02:00
2018-01-17 14:44:40 +01:00
2018-05-11 13:20:39 +02:00
2018-05-03 15:52:44 +02:00
2018-02-02 01:54:07 -05:00
2018-02-02 01:54:07 -05:00
2017-10-10 00:03:39 -05:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-05-29 10:56:58 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-04-15 13:01:10 +02:00
2018-04-15 13:01:10 +02:00
2018-01-19 08:10:09 +02:00
2018-01-19 08:10:09 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-05-24 19:38:40 +02:00
2018-05-24 19:38:40 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-01-16 15:52:16 +01:00
2018-01-19 12:07:00 +01:00
2018-04-21 19:51:35 +01:00
2018-04-21 19:51:58 +01:00
2018-04-02 00:24:40 +01:00
2018-04-02 00:24:40 +01:00
2018-04-07 22:45:26 -07:00
2018-04-02 00:24:40 +01:00
2018-04-15 14:00:28 +02:00
2018-04-15 14:00:28 +02:00
2018-04-05 18:13:39 +02:00
2018-04-05 18:13:39 +02:00
2018-01-31 00:10:35 +01:00
2018-01-31 00:10:35 +01:00
2018-03-16 09:44:20 +01:00
2018-03-16 09:44:20 +01:00
2018-03-16 09:44:20 +01:00
2018-03-16 09:44:20 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-05-03 15:52:44 +02:00
2018-05-03 15:52:44 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-04-07 22:18:51 +02:00
2018-04-07 22:18:51 +02:00
2018-05-28 10:03:27 +02:00
2018-05-28 10:03:27 +02:00
2018-04-27 14:00:43 +02:00
2018-04-27 14:00:43 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-03-28 23:49:32 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-03-02 22:00:01 +07:00
2018-03-02 22:00:01 +07:00
2018-04-05 22:45:36 +02:00
2018-04-05 22:45:36 +02:00
2017-10-09 23:36:29 -05:00
2018-01-17 14:44:40 +01:00
2017-10-09 23:57:17 -05:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-11-26 18:57:34 +01:00
2018-01-17 14:44:40 +01:00
2018-03-17 22:02:34 +01:00
2018-03-28 23:49:32 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-05-19 14:04:57 +02:00
2018-05-19 14:04:57 +02:00
2017-10-23 17:53:30 -04:00
2017-10-03 12:07:24 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-05-29 09:18:49 -07:00
2018-05-29 09:18:49 -07:00
2018-06-15 16:53:34 +02:00
2018-06-15 16:53:34 +02:00
2017-11-29 16:05:13 +01:00
2018-06-01 23:08:11 +07:00
2018-06-01 23:08:11 +07:00
2017-12-23 10:15:11 -08:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-01-18 17:04:26 -05:00
2018-01-18 17:04:26 -05:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-01-14 19:58:09 -08:00
2018-03-28 23:49:32 +02:00
2018-04-12 22:16:43 +02:00
2018-04-12 22:16:43 +02:00
2018-05-28 13:07:19 +02:00
2018-05-28 13:07:19 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-03-06 14:24:01 +01:00
2018-05-28 14:43:44 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-15 16:53:34 +02:00
2018-05-26 10:23:34 +02:00
2018-02-20 12:37:30 -05:00
2018-02-21 11:29:08 -05:00
2018-02-19 12:14:53 -05:00
2017-11-18 16:11:55 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-06-15 16:53:34 +02:00
2018-01-17 14:44:40 +01:00
2018-02-06 22:35:11 +01:00
2018-02-06 22:35:11 +01:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00
2018-01-29 16:52:22 +01:00
2018-01-29 09:48:11 +05:30
2018-04-21 19:51:35 +01:00
2018-04-21 19:51:58 +01:00
2018-04-07 22:45:26 -07:00
2018-04-07 22:45:26 -07:00
2018-04-07 22:45:26 -07:00
2018-04-15 14:00:28 +02:00
2018-06-15 16:53:34 +02:00
2018-01-17 14:44:40 +01:00
2017-10-03 12:07:24 +02:00
2018-03-28 23:49:32 +02:00
2017-10-03 12:07:24 +02:00
2018-01-17 14:44:40 +01:00