mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
refactor(transformer): shorten import (#6180)
Tiny change. Import with `use crate::TransformCtx` not `use crate::context::TransformCtx`.
This commit is contained in:
parent
3b79e1bc9d
commit
02fedf5123
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ use oxc_span::SPAN;
|
|||
use oxc_syntax::symbol::SymbolId;
|
||||
use oxc_traverse::{Traverse, TraverseCtx};
|
||||
|
||||
use crate::{context::TransformCtx, helpers::stack::SparseStack};
|
||||
use crate::{helpers::stack::SparseStack, TransformCtx};
|
||||
|
||||
/// Transform that maintains the stack of `Vec<VariableDeclarator>`s, and adds a `var` statement
|
||||
/// to top of a statement block if another transform has requested that.
|
||||
|
|
|
|||
Loading…
Reference in a new issue