From: BooksBaum <15612932+Booksbaum@users.noreply.github.com> Date: Thu, 19 Aug 2021 12:17:23 +0000 (+0200) Subject: Remove `match_ast` usage X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=8a9feeddd34d7a765e401613d8a4293b16660e29;p=rust.git Remove `match_ast` usage --- diff --git a/crates/ide_assists/src/handlers/destructure_tuple_binding.rs b/crates/ide_assists/src/handlers/destructure_tuple_binding.rs index eebeb2c4a51..a421f577546 100644 --- a/crates/ide_assists/src/handlers/destructure_tuple_binding.rs +++ b/crates/ide_assists/src/handlers/destructure_tuple_binding.rs @@ -6,7 +6,7 @@ use itertools::Itertools; use syntax::{ ast::{self, AstNode, FieldExpr, IdentPat, MethodCallExpr, NameOwner}, - match_ast, TextRange, + TextRange, }; use crate::assist_context::{AssistBuilder, AssistContext, Assists};