Skip to content

Commit

Permalink
refactor imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Benedikt Strehle committed Sep 3, 2024
1 parent 060fb38 commit c2956a4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/visitor.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use swc_core::ecma::ast::{FnExpr, IdentName, JSXAttr, JSXAttrName, JSXAttrValue, JSXElement, JSXElementChild, JSXSpreadChild, MemberExpr, MemberProp};
use swc_core::ecma::visit::{FoldWith, VisitWith};
use swc_core::{
atoms::Atom,
common::{util::take::Take, SyntaxContext, DUMMY_SP},
Expand All @@ -8,8 +6,9 @@ use swc_core::{
ArrowExpr, BlockStmt, BlockStmtOrExpr, CallExpr, Callee, Expr, ExprOrSpread, ExprStmt,
FnDecl, Ident, JSXEmptyExpr, JSXExpr, JSXExprContainer, Lit, Null, ReturnStmt, Stmt,
Str, VarDecl,
IdentName, JSXAttr, JSXAttrName, JSXAttrValue, JSXElement, JSXElementChild, JSXSpreadChild, MemberExpr, MemberProp
},
visit::{Fold, Visit},
visit::{Fold, Visit, FoldWith, VisitWith},
},
};

Expand Down

0 comments on commit c2956a4

Please sign in to comment.