Trait VisitWith

Source
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§

Source

fn visit_with(&self, visitor: &mut V)

Calls a visitor method (visitor.fold_xxx) with self.

Source

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>
where V: ?Sized + Visit, T: VisitWith<V>,

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V, T> VisitWith<V> for Vec<T>
where V: ?Sized + Visit, [T]: VisitWith<V>,

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ClassMember

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_class_member with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Key

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_key with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MethodKind

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_method_kind with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Decl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for VarDeclKind

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_var_decl_kind with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AssignTarget

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_assign_target with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AssignTargetPat

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for BlockStmtOrExpr

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Callee

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_callee with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Expr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MemberProp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_member_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MetaPropKind

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_meta_prop_kind with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for OptChainBase

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_chain_base with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PropOrSpread

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_prop_or_spread with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SimpleAssignTarget

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SuperProp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_super_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ParamOrTsParamProp

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXAttrName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_attr_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXAttrOrSpread

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXAttrValue

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_attr_value with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXElementChild

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXElementName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXObject

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_object with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Lit

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_lit with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ModuleItem

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_module_item with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Program

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_program with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for DefaultDecl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_default_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExportSpecifier

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportPhase

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_import_phase with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportSpecifier

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ModuleDecl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_module_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ModuleExportName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AssignOp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_assign_op with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for BinaryOp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_binary_op with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UnaryOp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_unary_op with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UpdateOp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_update_op with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ObjectPatProp

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Pat

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_pat with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Prop

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PropName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_prop_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ForHead

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_for_head with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Stmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for VarDeclOrExpr

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Accessibility

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_accessibility with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TruePlusMinus

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsEntityName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_entity_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsEnumMemberId

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsFnOrConstructorType

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsFnParam

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_fn_param with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsKeywordTypeKind

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsLit

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_lit with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsModuleName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_module_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsModuleRef

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_module_ref with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsNamespaceBody

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsParamPropParam

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsThisTypeOrIdent

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeElement

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeOperatorOp

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeQueryExpr

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsUnionOrIntersectionType

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<JSXAttrValue>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_jsx_attr_value with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<ModuleExportName>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_module_export_name with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Pat>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_pat with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<VarDeclOrExpr>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_var_decl_or_expr with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Accessibility>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_accessibility with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<TruePlusMinus>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_true_plus_minus with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<TsEntityName>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_ts_entity_name with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<TsNamespaceBody>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_ts_namespace_body with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Atom>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_atom with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Span>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_span with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<ExprOrSpread>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_expr_or_spread with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Ident>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_ident with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<JSXClosingElement>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_jsx_closing_element with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<BlockStmt>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_block_stmt with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<CatchClause>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_catch_clause with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<TsImportCallOptions>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_ts_import_call_options with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Expr>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_expr with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Stmt>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_stmt with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsType>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_ts_type with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<ObjectLit>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_object_lit with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Str>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_str with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsTypeAnn>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_ts_type_ann with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsTypeParamDecl>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_ts_type_param_decl with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TsTypeParamInstantiation>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_ts_type_param_instantiation with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<ExprOrSpread>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_expr_or_spreads with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for BigIntValue

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_big_int_value with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Atom

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_atom with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SyntaxContext

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_syntax_context with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Span

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_span with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AutoAccessor

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_auto_accessor with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Class

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_class with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ClassMethod

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_class_method with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ClassProp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_class_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Constructor

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_constructor with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Decorator

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_decorator with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PrivateMethod

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_private_method with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PrivateProp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_private_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for StaticBlock

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_static_block with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ClassDecl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_class_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for FnDecl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_fn_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UsingDecl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_using_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for VarDecl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_var_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for VarDeclarator

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_var_declarator with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ArrayLit

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_array_lit with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ArrowExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_arrow_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AssignExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_assign_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AwaitExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_await_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for BinExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_bin_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CallExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_call_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ClassExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_class_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CondExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_cond_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExprOrSpread

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_expr_or_spread with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for FnExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_fn_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Import

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_import with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportWith

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_import_with with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportWithItem

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MemberExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_member_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MetaPropExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_meta_prop_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for NewExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_new_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ObjectLit

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_object_lit with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for OptCall

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_call with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for OptChainExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_chain_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ParenExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_paren_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SeqExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_seq_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SpreadElement

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_spread_element with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Super

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_super with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SuperPropExpr

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TaggedTpl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_tagged_tpl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ThisExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_this_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Tpl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_tpl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TplElement

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_tpl_element with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UnaryExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_unary_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UpdateExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_update_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for YieldExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_yield_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Function

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_function with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Param

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_param with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for BindingIdent

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_binding_ident with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Ident

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ident with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for IdentName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ident_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PrivateName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_private_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXAttr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_attr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXClosingElement

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXClosingFragment

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXElement

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_element with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXEmptyExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_empty_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXExprContainer

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXFragment

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_fragment with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXMemberExpr

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXNamespacedName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXOpeningElement

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXOpeningFragment

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXSpreadChild

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for JSXText

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_text with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for BigInt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_big_int with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Bool

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_bool with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Null

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_null with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Number

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_number with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Regex

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_regex with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Str

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_str with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Module

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_module with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Script

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_script with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExportAll

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_export_all with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExportDecl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_export_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExportDefaultDecl

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExportDefaultExpr

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExportDefaultSpecifier

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExportNamedSpecifier

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExportNamespaceSpecifier

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportDecl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_import_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportDefaultSpecifier

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportNamedSpecifier

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportStarAsSpecifier

Source§

impl<V: ?Sized + Visit> VisitWith<V> for NamedExport

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_named_export with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ArrayPat

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_array_pat with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AssignPat

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_assign_pat with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AssignPatProp

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for KeyValuePatProp

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ObjectPat

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_object_pat with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for RestPat

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_rest_pat with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AssignProp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_assign_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ComputedPropName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for GetterProp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_getter_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for KeyValueProp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_key_value_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MethodProp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_method_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SetterProp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_setter_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for BlockStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_block_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for BreakStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_break_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CatchClause

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_catch_clause with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ContinueStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_continue_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for DebuggerStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_debugger_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for DoWhileStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_do_while_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for EmptyStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_empty_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExprStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_expr_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ForInStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_for_in_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ForOfStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_for_of_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ForStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_for_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for IfStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_if_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for LabeledStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_labeled_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ReturnStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_return_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SwitchCase

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_switch_case with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SwitchStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_switch_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ThrowStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_throw_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TryStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_try_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for WhileStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_while_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for WithStmt

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_with_stmt with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Invalid

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_invalid with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsArrayType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_array_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsAsExpr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_as_expr with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsCallSignatureDecl

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsConditionalType

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsConstAssertion

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsConstructSignatureDecl

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsConstructorType

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsEnumDecl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_enum_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsEnumMember

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_enum_member with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsExportAssignment

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsExprWithTypeArgs

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsExternalModuleRef

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsFnType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_fn_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsGetterSignature

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsImportCallOptions

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsImportEqualsDecl

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsImportType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_import_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsIndexSignature

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsIndexedAccessType

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsInferType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_infer_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsInstantiation

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsInterfaceBody

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsInterfaceDecl

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsIntersectionType

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsKeywordType

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsLitType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_lit_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsMappedType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_mapped_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsMethodSignature

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsModuleBlock

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsModuleDecl

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_module_decl with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsNamespaceDecl

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsNamespaceExportDecl

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsNonNullExpr

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsOptionalType

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsParamProp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_param_prop with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsParenthesizedType

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsPropertySignature

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsQualifiedName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsRestType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_rest_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsSatisfiesExpr

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsSetterSignature

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsThisType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_this_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTplLitType

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTupleElement

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTupleType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_tuple_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeAliasDecl

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeAnn

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_type_ann with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeAssertion

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeLit

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_type_lit with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeOperator

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeParam

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_type_param with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeParamDecl

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeParamInstantiation

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypePredicate

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeQuery

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_type_query with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsTypeRef

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_type_ref with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TsUnionType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_union_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ClassMember]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_class_members with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [PropOrSpread]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_prop_or_spreads with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ParamOrTsParamProp]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_param_or_ts_param_props with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [JSXAttrOrSpread]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_attr_or_spreads with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [JSXElementChild]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_jsx_element_childs with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ModuleItem]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_module_items with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ExportSpecifier]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_export_specifiers with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ImportSpecifier]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_import_specifiers with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ObjectPatProp]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_object_pat_props with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [Pat]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_pats with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [Stmt]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_stmts with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [TsFnParam]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_fn_params with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [TsTypeElement]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_type_elements with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [Option<Pat>]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_vec_pats with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [Option<ExprOrSpread>]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_vec_expr_or_spreads with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [Decorator]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_decorators with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [VarDeclarator]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_var_declarators with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ExprOrSpread]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_expr_or_spreads with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ImportWithItem]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_import_with_items with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [TplElement]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_tpl_elements with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [Param]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_params with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [SwitchCase]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_switch_cases with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [TsEnumMember]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_enum_members with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [TsExprWithTypeArgs]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_expr_with_type_argss with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [TsTupleElement]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_tuple_elements with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [TsTypeParam]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_type_params with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [Box<Expr>]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_exprs with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [Box<TsType>]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ts_types with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Implementors§