From 8a9feeddd34d7a765e401613d8a4293b16660e29 Mon Sep 17 00:00:00 2001 From: BooksBaum <15612932+Booksbaum@users.noreply.github.com> Date: Thu, 19 Aug 2021 14:17:23 +0200 Subject: [PATCH] Remove `match_ast` usage --- crates/ide_assists/src/handlers/destructure_tuple_binding.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}; -- 2.44.0