Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-assists/src/handlers/replace_arith_with_checked.rs')
-rw-r--r--crates/ide-assists/src/handlers/replace_arith_with_checked.rs45
1 files changed, 0 insertions, 45 deletions
diff --git a/crates/ide-assists/src/handlers/replace_arith_with_checked.rs b/crates/ide-assists/src/handlers/replace_arith_with_checked.rs
deleted file mode 100644
index ff1fba5818..0000000000
--- a/crates/ide-assists/src/handlers/replace_arith_with_checked.rs
+++ /dev/null
@@ -1,45 +0,0 @@
-use crate::assist_context::{AssistContext, Assists};
-use crate::utils::{replace_arith, ArithKind};
-
-// Assist: replace_arith_with_checked
-//
-// Replaces arithmetic on integers with the `checked_*` equivalent.
-//
-// ```
-// fn main() {
-// let x = 1 $0+ 2;
-// }
-// ```
-// ->
-// ```
-// fn main() {
-// let x = 1.checked_add(2);
-// }
-// ```
-pub(crate) fn replace_arith_with_checked(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<()> {
- replace_arith(acc, ctx, ArithKind::Checked)
-}
-
-#[cfg(test)]
-mod tests {
- use crate::tests::check_assist;
-
- use super::*;
-
- #[test]
- fn replace_arith_with_saturating_add() {
- check_assist(
- replace_arith_with_checked,
- r#"
-fn main() {
- let x = 1 $0+ 2;
-}
-"#,
- r#"
-fn main() {
- let x = 1.checked_add(2);
-}
-"#,
- )
- }
-}