pub trait VisitWith<V: ?Sized + Visit> {
// Required methods
fn visit_with(&self, visitor: &mut V);
fn visit_children_with(&self, visitor: &mut V);
}
Expand description
A trait implemented for types that can be visited using a visitor.
Required Methods§
sourcefn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls a visitor method (visitor.fold_xxx) with self.
sourcefn visit_children_with(&self, visitor: &mut V)
fn visit_children_with(&self, visitor: &mut V)
Visit children nodes of self`` with
visitor`.
Implementations on Foreign Types§
source§impl<V, T> VisitWith<V> for Box<T>
impl<V, T> VisitWith<V> for Box<T>
fn visit_with(&self, visitor: &mut V)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V, T> VisitWith<V> for Vec<T>
impl<V, T> VisitWith<V> for Vec<T>
fn visit_with(&self, visitor: &mut V)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Expr>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Expr>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_expr
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<ObjectLit>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<ObjectLit>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_object_lit
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Stmt>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Stmt>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_stmt
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Str>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Str>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_str
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsType>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsType>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_ts_type
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsTypeAnn>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsTypeAnn>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_ts_type_ann
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsTypeParamDecl>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsTypeParamDecl>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_ts_type_param_decl
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsTypeParamInstantiation>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsTypeParamInstantiation>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_ts_type_param_instantiation
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<ExprOrSpread>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<ExprOrSpread>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_expr_or_spreads
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Accessibility>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Accessibility>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_accessibility
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Atom>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Atom>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_atom
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<BlockStmt>
impl<V: ?Sized + Visit> VisitWith<V> for Option<BlockStmt>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_block_stmt
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<CatchClause>
impl<V: ?Sized + Visit> VisitWith<V> for Option<CatchClause>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_catch_clause
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<ExprOrSpread>
impl<V: ?Sized + Visit> VisitWith<V> for Option<ExprOrSpread>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_expr_or_spread
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Ident>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Ident>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_ident
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<JSXAttrValue>
impl<V: ?Sized + Visit> VisitWith<V> for Option<JSXAttrValue>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_jsx_attr_value
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<JSXClosingElement>
impl<V: ?Sized + Visit> VisitWith<V> for Option<JSXClosingElement>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_jsx_closing_element
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<ModuleExportName>
impl<V: ?Sized + Visit> VisitWith<V> for Option<ModuleExportName>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_module_export_name
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Pat>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Pat>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_pat
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Span>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Span>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_span
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<TruePlusMinus>
impl<V: ?Sized + Visit> VisitWith<V> for Option<TruePlusMinus>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_true_plus_minus
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<TsEntityName>
impl<V: ?Sized + Visit> VisitWith<V> for Option<TsEntityName>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_ts_entity_name
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<TsNamespaceBody>
impl<V: ?Sized + Visit> VisitWith<V> for Option<TsNamespaceBody>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_ts_namespace_body
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<VarDeclOrExpr>
impl<V: ?Sized + Visit> VisitWith<V> for Option<VarDeclOrExpr>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_var_decl_or_expr
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for BigIntValue
impl<V: ?Sized + Visit> VisitWith<V> for BigIntValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_big_int_value
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Accessibility
impl<V: ?Sized + Visit> VisitWith<V> for Accessibility
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_accessibility
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ArrayLit
impl<V: ?Sized + Visit> VisitWith<V> for ArrayLit
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_array_lit
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ArrayPat
impl<V: ?Sized + Visit> VisitWith<V> for ArrayPat
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_array_pat
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ArrowExpr
impl<V: ?Sized + Visit> VisitWith<V> for ArrowExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_arrow_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AssignExpr
impl<V: ?Sized + Visit> VisitWith<V> for AssignExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_assign_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AssignOp
impl<V: ?Sized + Visit> VisitWith<V> for AssignOp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_assign_op
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AssignPat
impl<V: ?Sized + Visit> VisitWith<V> for AssignPat
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_assign_pat
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AssignPatProp
impl<V: ?Sized + Visit> VisitWith<V> for AssignPatProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_assign_pat_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AssignProp
impl<V: ?Sized + Visit> VisitWith<V> for AssignProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_assign_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AssignTarget
impl<V: ?Sized + Visit> VisitWith<V> for AssignTarget
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_assign_target
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AssignTargetPat
impl<V: ?Sized + Visit> VisitWith<V> for AssignTargetPat
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_assign_target_pat
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Atom
impl<V: ?Sized + Visit> VisitWith<V> for Atom
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_atom
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AutoAccessor
impl<V: ?Sized + Visit> VisitWith<V> for AutoAccessor
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_auto_accessor
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AwaitExpr
impl<V: ?Sized + Visit> VisitWith<V> for AwaitExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_await_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for BigInt
impl<V: ?Sized + Visit> VisitWith<V> for BigInt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_big_int
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for BinExpr
impl<V: ?Sized + Visit> VisitWith<V> for BinExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_bin_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for BinaryOp
impl<V: ?Sized + Visit> VisitWith<V> for BinaryOp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_binary_op
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for BindingIdent
impl<V: ?Sized + Visit> VisitWith<V> for BindingIdent
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_binding_ident
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for BlockStmt
impl<V: ?Sized + Visit> VisitWith<V> for BlockStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_block_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for BlockStmtOrExpr
impl<V: ?Sized + Visit> VisitWith<V> for BlockStmtOrExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_block_stmt_or_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Bool
impl<V: ?Sized + Visit> VisitWith<V> for Bool
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_bool
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for BreakStmt
impl<V: ?Sized + Visit> VisitWith<V> for BreakStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_break_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CallExpr
impl<V: ?Sized + Visit> VisitWith<V> for CallExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_call_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Callee
impl<V: ?Sized + Visit> VisitWith<V> for Callee
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_callee
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CatchClause
impl<V: ?Sized + Visit> VisitWith<V> for CatchClause
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_catch_clause
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Class
impl<V: ?Sized + Visit> VisitWith<V> for Class
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_class
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ClassDecl
impl<V: ?Sized + Visit> VisitWith<V> for ClassDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_class_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ClassExpr
impl<V: ?Sized + Visit> VisitWith<V> for ClassExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_class_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ClassMember
impl<V: ?Sized + Visit> VisitWith<V> for ClassMember
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_class_member
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ClassMethod
impl<V: ?Sized + Visit> VisitWith<V> for ClassMethod
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_class_method
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ClassProp
impl<V: ?Sized + Visit> VisitWith<V> for ClassProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_class_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ComputedPropName
impl<V: ?Sized + Visit> VisitWith<V> for ComputedPropName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_computed_prop_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CondExpr
impl<V: ?Sized + Visit> VisitWith<V> for CondExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_cond_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Constructor
impl<V: ?Sized + Visit> VisitWith<V> for Constructor
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_constructor
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ContinueStmt
impl<V: ?Sized + Visit> VisitWith<V> for ContinueStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_continue_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DebuggerStmt
impl<V: ?Sized + Visit> VisitWith<V> for DebuggerStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_debugger_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Decl
impl<V: ?Sized + Visit> VisitWith<V> for Decl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Decorator
impl<V: ?Sized + Visit> VisitWith<V> for Decorator
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_decorator
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DefaultDecl
impl<V: ?Sized + Visit> VisitWith<V> for DefaultDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_default_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DoWhileStmt
impl<V: ?Sized + Visit> VisitWith<V> for DoWhileStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_do_while_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for EmptyStmt
impl<V: ?Sized + Visit> VisitWith<V> for EmptyStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_empty_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExportAll
impl<V: ?Sized + Visit> VisitWith<V> for ExportAll
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_export_all
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExportDecl
impl<V: ?Sized + Visit> VisitWith<V> for ExportDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_export_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExportDefaultDecl
impl<V: ?Sized + Visit> VisitWith<V> for ExportDefaultDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_export_default_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExportDefaultExpr
impl<V: ?Sized + Visit> VisitWith<V> for ExportDefaultExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_export_default_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExportDefaultSpecifier
impl<V: ?Sized + Visit> VisitWith<V> for ExportDefaultSpecifier
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_export_default_specifier
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExportNamedSpecifier
impl<V: ?Sized + Visit> VisitWith<V> for ExportNamedSpecifier
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_export_named_specifier
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExportNamespaceSpecifier
impl<V: ?Sized + Visit> VisitWith<V> for ExportNamespaceSpecifier
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_export_namespace_specifier
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExportSpecifier
impl<V: ?Sized + Visit> VisitWith<V> for ExportSpecifier
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_export_specifier
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Expr
impl<V: ?Sized + Visit> VisitWith<V> for Expr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExprOrSpread
impl<V: ?Sized + Visit> VisitWith<V> for ExprOrSpread
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_expr_or_spread
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExprStmt
impl<V: ?Sized + Visit> VisitWith<V> for ExprStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_expr_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for FnDecl
impl<V: ?Sized + Visit> VisitWith<V> for FnDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_fn_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for FnExpr
impl<V: ?Sized + Visit> VisitWith<V> for FnExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_fn_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ForHead
impl<V: ?Sized + Visit> VisitWith<V> for ForHead
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_for_head
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ForInStmt
impl<V: ?Sized + Visit> VisitWith<V> for ForInStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_for_in_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ForOfStmt
impl<V: ?Sized + Visit> VisitWith<V> for ForOfStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_for_of_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ForStmt
impl<V: ?Sized + Visit> VisitWith<V> for ForStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_for_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Function
impl<V: ?Sized + Visit> VisitWith<V> for Function
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_function
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for GetterProp
impl<V: ?Sized + Visit> VisitWith<V> for GetterProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_getter_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Ident
impl<V: ?Sized + Visit> VisitWith<V> for Ident
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ident
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for IdentName
impl<V: ?Sized + Visit> VisitWith<V> for IdentName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ident_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for IfStmt
impl<V: ?Sized + Visit> VisitWith<V> for IfStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_if_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Import
impl<V: ?Sized + Visit> VisitWith<V> for Import
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportDecl
impl<V: ?Sized + Visit> VisitWith<V> for ImportDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportDefaultSpecifier
impl<V: ?Sized + Visit> VisitWith<V> for ImportDefaultSpecifier
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_default_specifier
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportNamedSpecifier
impl<V: ?Sized + Visit> VisitWith<V> for ImportNamedSpecifier
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_named_specifier
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportPhase
impl<V: ?Sized + Visit> VisitWith<V> for ImportPhase
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_phase
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportSpecifier
impl<V: ?Sized + Visit> VisitWith<V> for ImportSpecifier
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_specifier
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportStarAsSpecifier
impl<V: ?Sized + Visit> VisitWith<V> for ImportStarAsSpecifier
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_star_as_specifier
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportWith
impl<V: ?Sized + Visit> VisitWith<V> for ImportWith
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_with
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportWithItem
impl<V: ?Sized + Visit> VisitWith<V> for ImportWithItem
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_with_item
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Invalid
impl<V: ?Sized + Visit> VisitWith<V> for Invalid
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_invalid
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXAttr
impl<V: ?Sized + Visit> VisitWith<V> for JSXAttr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_attr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXAttrName
impl<V: ?Sized + Visit> VisitWith<V> for JSXAttrName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_attr_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXAttrOrSpread
impl<V: ?Sized + Visit> VisitWith<V> for JSXAttrOrSpread
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_attr_or_spread
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXAttrValue
impl<V: ?Sized + Visit> VisitWith<V> for JSXAttrValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_attr_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXClosingElement
impl<V: ?Sized + Visit> VisitWith<V> for JSXClosingElement
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_closing_element
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXClosingFragment
impl<V: ?Sized + Visit> VisitWith<V> for JSXClosingFragment
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_closing_fragment
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXElement
impl<V: ?Sized + Visit> VisitWith<V> for JSXElement
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_element
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXElementChild
impl<V: ?Sized + Visit> VisitWith<V> for JSXElementChild
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_element_child
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXElementName
impl<V: ?Sized + Visit> VisitWith<V> for JSXElementName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_element_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXEmptyExpr
impl<V: ?Sized + Visit> VisitWith<V> for JSXEmptyExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_empty_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXExpr
impl<V: ?Sized + Visit> VisitWith<V> for JSXExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXExprContainer
impl<V: ?Sized + Visit> VisitWith<V> for JSXExprContainer
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_expr_container
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXFragment
impl<V: ?Sized + Visit> VisitWith<V> for JSXFragment
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_fragment
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXMemberExpr
impl<V: ?Sized + Visit> VisitWith<V> for JSXMemberExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_member_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXNamespacedName
impl<V: ?Sized + Visit> VisitWith<V> for JSXNamespacedName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_namespaced_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXObject
impl<V: ?Sized + Visit> VisitWith<V> for JSXObject
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_object
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXOpeningElement
impl<V: ?Sized + Visit> VisitWith<V> for JSXOpeningElement
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_opening_element
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXOpeningFragment
impl<V: ?Sized + Visit> VisitWith<V> for JSXOpeningFragment
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_opening_fragment
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXSpreadChild
impl<V: ?Sized + Visit> VisitWith<V> for JSXSpreadChild
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_spread_child
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for JSXText
impl<V: ?Sized + Visit> VisitWith<V> for JSXText
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_text
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Key
impl<V: ?Sized + Visit> VisitWith<V> for Key
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_key
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for KeyValuePatProp
impl<V: ?Sized + Visit> VisitWith<V> for KeyValuePatProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_key_value_pat_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for KeyValueProp
impl<V: ?Sized + Visit> VisitWith<V> for KeyValueProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_key_value_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for LabeledStmt
impl<V: ?Sized + Visit> VisitWith<V> for LabeledStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_labeled_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Lit
impl<V: ?Sized + Visit> VisitWith<V> for Lit
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_lit
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MemberExpr
impl<V: ?Sized + Visit> VisitWith<V> for MemberExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_member_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MemberProp
impl<V: ?Sized + Visit> VisitWith<V> for MemberProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_member_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MetaPropExpr
impl<V: ?Sized + Visit> VisitWith<V> for MetaPropExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_meta_prop_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MetaPropKind
impl<V: ?Sized + Visit> VisitWith<V> for MetaPropKind
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_meta_prop_kind
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MethodKind
impl<V: ?Sized + Visit> VisitWith<V> for MethodKind
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_method_kind
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MethodProp
impl<V: ?Sized + Visit> VisitWith<V> for MethodProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_method_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Module
impl<V: ?Sized + Visit> VisitWith<V> for Module
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_module
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ModuleDecl
impl<V: ?Sized + Visit> VisitWith<V> for ModuleDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_module_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ModuleExportName
impl<V: ?Sized + Visit> VisitWith<V> for ModuleExportName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_module_export_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ModuleItem
impl<V: ?Sized + Visit> VisitWith<V> for ModuleItem
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_module_item
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for NamedExport
impl<V: ?Sized + Visit> VisitWith<V> for NamedExport
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_named_export
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for NewExpr
impl<V: ?Sized + Visit> VisitWith<V> for NewExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_new_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Null
impl<V: ?Sized + Visit> VisitWith<V> for Null
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_null
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Number
impl<V: ?Sized + Visit> VisitWith<V> for Number
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_number
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ObjectLit
impl<V: ?Sized + Visit> VisitWith<V> for ObjectLit
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_object_lit
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ObjectPat
impl<V: ?Sized + Visit> VisitWith<V> for ObjectPat
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_object_pat
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ObjectPatProp
impl<V: ?Sized + Visit> VisitWith<V> for ObjectPatProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_object_pat_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for OptCall
impl<V: ?Sized + Visit> VisitWith<V> for OptCall
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_call
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for OptChainBase
impl<V: ?Sized + Visit> VisitWith<V> for OptChainBase
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_chain_base
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for OptChainExpr
impl<V: ?Sized + Visit> VisitWith<V> for OptChainExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_chain_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Param
impl<V: ?Sized + Visit> VisitWith<V> for Param
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_param
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ParamOrTsParamProp
impl<V: ?Sized + Visit> VisitWith<V> for ParamOrTsParamProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_param_or_ts_param_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ParenExpr
impl<V: ?Sized + Visit> VisitWith<V> for ParenExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_paren_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Pat
impl<V: ?Sized + Visit> VisitWith<V> for Pat
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_pat
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PrivateMethod
impl<V: ?Sized + Visit> VisitWith<V> for PrivateMethod
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_private_method
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PrivateName
impl<V: ?Sized + Visit> VisitWith<V> for PrivateName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_private_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PrivateProp
impl<V: ?Sized + Visit> VisitWith<V> for PrivateProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_private_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Program
impl<V: ?Sized + Visit> VisitWith<V> for Program
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_program
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Prop
impl<V: ?Sized + Visit> VisitWith<V> for Prop
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PropName
impl<V: ?Sized + Visit> VisitWith<V> for PropName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_prop_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PropOrSpread
impl<V: ?Sized + Visit> VisitWith<V> for PropOrSpread
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_prop_or_spread
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Regex
impl<V: ?Sized + Visit> VisitWith<V> for Regex
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_regex
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for RestPat
impl<V: ?Sized + Visit> VisitWith<V> for RestPat
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_rest_pat
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ReturnStmt
impl<V: ?Sized + Visit> VisitWith<V> for ReturnStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_return_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Script
impl<V: ?Sized + Visit> VisitWith<V> for Script
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_script
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SeqExpr
impl<V: ?Sized + Visit> VisitWith<V> for SeqExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_seq_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SetterProp
impl<V: ?Sized + Visit> VisitWith<V> for SetterProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_setter_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SimpleAssignTarget
impl<V: ?Sized + Visit> VisitWith<V> for SimpleAssignTarget
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_simple_assign_target
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Span
impl<V: ?Sized + Visit> VisitWith<V> for Span
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_span
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SpreadElement
impl<V: ?Sized + Visit> VisitWith<V> for SpreadElement
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_spread_element
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for StaticBlock
impl<V: ?Sized + Visit> VisitWith<V> for StaticBlock
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_static_block
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Stmt
impl<V: ?Sized + Visit> VisitWith<V> for Stmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Str
impl<V: ?Sized + Visit> VisitWith<V> for Str
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_str
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Super
impl<V: ?Sized + Visit> VisitWith<V> for Super
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_super
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SuperProp
impl<V: ?Sized + Visit> VisitWith<V> for SuperProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_super_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SuperPropExpr
impl<V: ?Sized + Visit> VisitWith<V> for SuperPropExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_super_prop_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SwitchCase
impl<V: ?Sized + Visit> VisitWith<V> for SwitchCase
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_switch_case
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SwitchStmt
impl<V: ?Sized + Visit> VisitWith<V> for SwitchStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_switch_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SyntaxContext
impl<V: ?Sized + Visit> VisitWith<V> for SyntaxContext
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_syntax_context
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TaggedTpl
impl<V: ?Sized + Visit> VisitWith<V> for TaggedTpl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_tagged_tpl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ThisExpr
impl<V: ?Sized + Visit> VisitWith<V> for ThisExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_this_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ThrowStmt
impl<V: ?Sized + Visit> VisitWith<V> for ThrowStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_throw_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Tpl
impl<V: ?Sized + Visit> VisitWith<V> for Tpl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_tpl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TplElement
impl<V: ?Sized + Visit> VisitWith<V> for TplElement
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_tpl_element
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TruePlusMinus
impl<V: ?Sized + Visit> VisitWith<V> for TruePlusMinus
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_true_plus_minus
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TryStmt
impl<V: ?Sized + Visit> VisitWith<V> for TryStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_try_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsArrayType
impl<V: ?Sized + Visit> VisitWith<V> for TsArrayType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_array_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsAsExpr
impl<V: ?Sized + Visit> VisitWith<V> for TsAsExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_as_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsCallSignatureDecl
impl<V: ?Sized + Visit> VisitWith<V> for TsCallSignatureDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_call_signature_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsConditionalType
impl<V: ?Sized + Visit> VisitWith<V> for TsConditionalType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_conditional_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsConstAssertion
impl<V: ?Sized + Visit> VisitWith<V> for TsConstAssertion
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_const_assertion
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsConstructSignatureDecl
impl<V: ?Sized + Visit> VisitWith<V> for TsConstructSignatureDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_construct_signature_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsConstructorType
impl<V: ?Sized + Visit> VisitWith<V> for TsConstructorType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_constructor_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsEntityName
impl<V: ?Sized + Visit> VisitWith<V> for TsEntityName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_entity_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsEnumDecl
impl<V: ?Sized + Visit> VisitWith<V> for TsEnumDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_enum_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsEnumMember
impl<V: ?Sized + Visit> VisitWith<V> for TsEnumMember
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_enum_member
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsEnumMemberId
impl<V: ?Sized + Visit> VisitWith<V> for TsEnumMemberId
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_enum_member_id
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsExportAssignment
impl<V: ?Sized + Visit> VisitWith<V> for TsExportAssignment
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_export_assignment
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsExprWithTypeArgs
impl<V: ?Sized + Visit> VisitWith<V> for TsExprWithTypeArgs
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_expr_with_type_args
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsExternalModuleRef
impl<V: ?Sized + Visit> VisitWith<V> for TsExternalModuleRef
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_external_module_ref
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsFnOrConstructorType
impl<V: ?Sized + Visit> VisitWith<V> for TsFnOrConstructorType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_fn_or_constructor_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsFnParam
impl<V: ?Sized + Visit> VisitWith<V> for TsFnParam
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_fn_param
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsFnType
impl<V: ?Sized + Visit> VisitWith<V> for TsFnType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_fn_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsGetterSignature
impl<V: ?Sized + Visit> VisitWith<V> for TsGetterSignature
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_getter_signature
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsImportEqualsDecl
impl<V: ?Sized + Visit> VisitWith<V> for TsImportEqualsDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_import_equals_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsImportType
impl<V: ?Sized + Visit> VisitWith<V> for TsImportType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_import_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsIndexSignature
impl<V: ?Sized + Visit> VisitWith<V> for TsIndexSignature
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_index_signature
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsIndexedAccessType
impl<V: ?Sized + Visit> VisitWith<V> for TsIndexedAccessType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_indexed_access_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsInferType
impl<V: ?Sized + Visit> VisitWith<V> for TsInferType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_infer_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsInstantiation
impl<V: ?Sized + Visit> VisitWith<V> for TsInstantiation
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_instantiation
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsInterfaceBody
impl<V: ?Sized + Visit> VisitWith<V> for TsInterfaceBody
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_interface_body
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsInterfaceDecl
impl<V: ?Sized + Visit> VisitWith<V> for TsInterfaceDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_interface_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsIntersectionType
impl<V: ?Sized + Visit> VisitWith<V> for TsIntersectionType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_intersection_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsKeywordType
impl<V: ?Sized + Visit> VisitWith<V> for TsKeywordType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_keyword_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsKeywordTypeKind
impl<V: ?Sized + Visit> VisitWith<V> for TsKeywordTypeKind
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_keyword_type_kind
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsLit
impl<V: ?Sized + Visit> VisitWith<V> for TsLit
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_lit
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsLitType
impl<V: ?Sized + Visit> VisitWith<V> for TsLitType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_lit_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsMappedType
impl<V: ?Sized + Visit> VisitWith<V> for TsMappedType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_mapped_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsMethodSignature
impl<V: ?Sized + Visit> VisitWith<V> for TsMethodSignature
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_method_signature
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsModuleBlock
impl<V: ?Sized + Visit> VisitWith<V> for TsModuleBlock
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_module_block
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsModuleDecl
impl<V: ?Sized + Visit> VisitWith<V> for TsModuleDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_module_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsModuleName
impl<V: ?Sized + Visit> VisitWith<V> for TsModuleName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_module_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsModuleRef
impl<V: ?Sized + Visit> VisitWith<V> for TsModuleRef
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_module_ref
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsNamespaceBody
impl<V: ?Sized + Visit> VisitWith<V> for TsNamespaceBody
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_namespace_body
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsNamespaceDecl
impl<V: ?Sized + Visit> VisitWith<V> for TsNamespaceDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_namespace_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsNamespaceExportDecl
impl<V: ?Sized + Visit> VisitWith<V> for TsNamespaceExportDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_namespace_export_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsNonNullExpr
impl<V: ?Sized + Visit> VisitWith<V> for TsNonNullExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_non_null_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsOptionalType
impl<V: ?Sized + Visit> VisitWith<V> for TsOptionalType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_optional_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsParamProp
impl<V: ?Sized + Visit> VisitWith<V> for TsParamProp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_param_prop
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsParamPropParam
impl<V: ?Sized + Visit> VisitWith<V> for TsParamPropParam
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_param_prop_param
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsParenthesizedType
impl<V: ?Sized + Visit> VisitWith<V> for TsParenthesizedType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_parenthesized_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsPropertySignature
impl<V: ?Sized + Visit> VisitWith<V> for TsPropertySignature
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_property_signature
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsQualifiedName
impl<V: ?Sized + Visit> VisitWith<V> for TsQualifiedName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_qualified_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsRestType
impl<V: ?Sized + Visit> VisitWith<V> for TsRestType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_rest_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsSatisfiesExpr
impl<V: ?Sized + Visit> VisitWith<V> for TsSatisfiesExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_satisfies_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsSetterSignature
impl<V: ?Sized + Visit> VisitWith<V> for TsSetterSignature
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_setter_signature
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsThisType
impl<V: ?Sized + Visit> VisitWith<V> for TsThisType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_this_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsThisTypeOrIdent
impl<V: ?Sized + Visit> VisitWith<V> for TsThisTypeOrIdent
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_this_type_or_ident
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTplLitType
impl<V: ?Sized + Visit> VisitWith<V> for TsTplLitType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_tpl_lit_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTupleElement
impl<V: ?Sized + Visit> VisitWith<V> for TsTupleElement
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_tuple_element
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTupleType
impl<V: ?Sized + Visit> VisitWith<V> for TsTupleType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_tuple_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsType
impl<V: ?Sized + Visit> VisitWith<V> for TsType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeAliasDecl
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeAliasDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_alias_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeAnn
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeAnn
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_ann
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeAssertion
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeAssertion
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_assertion
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeElement
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeElement
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_element
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeLit
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeLit
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_lit
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeOperator
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeOperator
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_operator
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeOperatorOp
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeOperatorOp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_operator_op
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeParam
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeParam
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_param
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeParamDecl
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeParamDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_param_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeParamInstantiation
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeParamInstantiation
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_param_instantiation
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypePredicate
impl<V: ?Sized + Visit> VisitWith<V> for TsTypePredicate
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_predicate
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeQuery
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeQuery
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_query
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeQueryExpr
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeQueryExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_query_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsTypeRef
impl<V: ?Sized + Visit> VisitWith<V> for TsTypeRef
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_ref
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsUnionOrIntersectionType
impl<V: ?Sized + Visit> VisitWith<V> for TsUnionOrIntersectionType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_union_or_intersection_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TsUnionType
impl<V: ?Sized + Visit> VisitWith<V> for TsUnionType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_union_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UnaryExpr
impl<V: ?Sized + Visit> VisitWith<V> for UnaryExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_unary_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UnaryOp
impl<V: ?Sized + Visit> VisitWith<V> for UnaryOp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_unary_op
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UpdateExpr
impl<V: ?Sized + Visit> VisitWith<V> for UpdateExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_update_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UpdateOp
impl<V: ?Sized + Visit> VisitWith<V> for UpdateOp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_update_op
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UsingDecl
impl<V: ?Sized + Visit> VisitWith<V> for UsingDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_using_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for VarDecl
impl<V: ?Sized + Visit> VisitWith<V> for VarDecl
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_var_decl
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for VarDeclKind
impl<V: ?Sized + Visit> VisitWith<V> for VarDeclKind
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_var_decl_kind
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for VarDeclOrExpr
impl<V: ?Sized + Visit> VisitWith<V> for VarDeclOrExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_var_decl_or_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for VarDeclarator
impl<V: ?Sized + Visit> VisitWith<V> for VarDeclarator
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_var_declarator
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for WhileStmt
impl<V: ?Sized + Visit> VisitWith<V> for WhileStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_while_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for WithStmt
impl<V: ?Sized + Visit> VisitWith<V> for WithStmt
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_with_stmt
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for YieldExpr
impl<V: ?Sized + Visit> VisitWith<V> for YieldExpr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_yield_expr
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Option<ExprOrSpread>]
impl<V: ?Sized + Visit> VisitWith<V> for [Option<ExprOrSpread>]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_vec_expr_or_spreads
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Option<Pat>]
impl<V: ?Sized + Visit> VisitWith<V> for [Option<Pat>]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_vec_pats
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Box<Expr>]
impl<V: ?Sized + Visit> VisitWith<V> for [Box<Expr>]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_exprs
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Box<TsType>]
impl<V: ?Sized + Visit> VisitWith<V> for [Box<TsType>]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_types
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ClassMember]
impl<V: ?Sized + Visit> VisitWith<V> for [ClassMember]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_class_members
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Decorator]
impl<V: ?Sized + Visit> VisitWith<V> for [Decorator]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_decorators
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ExportSpecifier]
impl<V: ?Sized + Visit> VisitWith<V> for [ExportSpecifier]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_export_specifiers
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ExprOrSpread]
impl<V: ?Sized + Visit> VisitWith<V> for [ExprOrSpread]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_expr_or_spreads
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ImportSpecifier]
impl<V: ?Sized + Visit> VisitWith<V> for [ImportSpecifier]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_specifiers
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ImportWithItem]
impl<V: ?Sized + Visit> VisitWith<V> for [ImportWithItem]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_with_items
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [JSXAttrOrSpread]
impl<V: ?Sized + Visit> VisitWith<V> for [JSXAttrOrSpread]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_attr_or_spreads
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [JSXElementChild]
impl<V: ?Sized + Visit> VisitWith<V> for [JSXElementChild]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_jsx_element_childs
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ModuleItem]
impl<V: ?Sized + Visit> VisitWith<V> for [ModuleItem]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_module_items
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ObjectPatProp]
impl<V: ?Sized + Visit> VisitWith<V> for [ObjectPatProp]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_object_pat_props
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ParamOrTsParamProp]
impl<V: ?Sized + Visit> VisitWith<V> for [ParamOrTsParamProp]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_param_or_ts_param_props
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Param]
impl<V: ?Sized + Visit> VisitWith<V> for [Param]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_params
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Pat]
impl<V: ?Sized + Visit> VisitWith<V> for [Pat]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_pats
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [PropOrSpread]
impl<V: ?Sized + Visit> VisitWith<V> for [PropOrSpread]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_prop_or_spreads
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Stmt]
impl<V: ?Sized + Visit> VisitWith<V> for [Stmt]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_stmts
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [SwitchCase]
impl<V: ?Sized + Visit> VisitWith<V> for [SwitchCase]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_switch_cases
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [TplElement]
impl<V: ?Sized + Visit> VisitWith<V> for [TplElement]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_tpl_elements
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [TsEnumMember]
impl<V: ?Sized + Visit> VisitWith<V> for [TsEnumMember]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_enum_members
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [TsExprWithTypeArgs]
impl<V: ?Sized + Visit> VisitWith<V> for [TsExprWithTypeArgs]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_expr_with_type_argss
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [TsFnParam]
impl<V: ?Sized + Visit> VisitWith<V> for [TsFnParam]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_fn_params
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [TsTupleElement]
impl<V: ?Sized + Visit> VisitWith<V> for [TsTupleElement]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_tuple_elements
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [TsTypeElement]
impl<V: ?Sized + Visit> VisitWith<V> for [TsTypeElement]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_elements
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [TsTypeParam]
impl<V: ?Sized + Visit> VisitWith<V> for [TsTypeParam]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ts_type_params
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [VarDeclarator]
impl<V: ?Sized + Visit> VisitWith<V> for [VarDeclarator]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_var_declarators
with self
. (Extra impl)