pub struct Optional<V> {
pub enabled: bool,
pub visitor: V,
}
Expand description
A visitor which visits node only if enabled
is true.
Fields§
§enabled: bool
§visitor: V
Implementations§
Trait Implementations§
source§impl<V> Fold for Optional<V>where
V: Fold,
impl<V> Fold for Optional<V>where
V: Fold,
source§fn fold_accessibility(&mut self, n: Accessibility) -> Accessibility
fn fold_accessibility(&mut self, n: Accessibility) -> Accessibility
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_array_lit(&mut self, n: ArrayLit) -> ArrayLit
fn fold_array_lit(&mut self, n: ArrayLit) -> ArrayLit
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_array_pat(&mut self, n: ArrayPat) -> ArrayPat
fn fold_array_pat(&mut self, n: ArrayPat) -> ArrayPat
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_arrow_expr(&mut self, n: ArrowExpr) -> ArrowExpr
fn fold_arrow_expr(&mut self, n: ArrowExpr) -> ArrowExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_assign_expr(&mut self, n: AssignExpr) -> AssignExpr
fn fold_assign_expr(&mut self, n: AssignExpr) -> AssignExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_assign_op(&mut self, n: AssignOp) -> AssignOp
fn fold_assign_op(&mut self, n: AssignOp) -> AssignOp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_assign_pat(&mut self, n: AssignPat) -> AssignPat
fn fold_assign_pat(&mut self, n: AssignPat) -> AssignPat
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_assign_pat_prop(&mut self, n: AssignPatProp) -> AssignPatProp
fn fold_assign_pat_prop(&mut self, n: AssignPatProp) -> AssignPatProp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_assign_prop(&mut self, n: AssignProp) -> AssignProp
fn fold_assign_prop(&mut self, n: AssignProp) -> AssignProp
This method can be overriden to customize the visitor behavior. Read more
fn fold_atom(&mut self, n: Atom) -> Atom
source§fn fold_await_expr(&mut self, n: AwaitExpr) -> AwaitExpr
fn fold_await_expr(&mut self, n: AwaitExpr) -> AwaitExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_big_int(&mut self, n: BigInt) -> BigInt
fn fold_big_int(&mut self, n: BigInt) -> BigInt
This method can be overriden to customize the visitor behavior. Read more
fn fold_big_int_value(&mut self, n: BigInt) -> BigInt
source§fn fold_bin_expr(&mut self, n: BinExpr) -> BinExpr
fn fold_bin_expr(&mut self, n: BinExpr) -> BinExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_binary_op(&mut self, n: BinaryOp) -> BinaryOp
fn fold_binary_op(&mut self, n: BinaryOp) -> BinaryOp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_binding_ident(&mut self, n: BindingIdent) -> BindingIdent
fn fold_binding_ident(&mut self, n: BindingIdent) -> BindingIdent
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_block_stmt(&mut self, n: BlockStmt) -> BlockStmt
fn fold_block_stmt(&mut self, n: BlockStmt) -> BlockStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_block_stmt_or_expr(&mut self, n: BlockStmtOrExpr) -> BlockStmtOrExpr
fn fold_block_stmt_or_expr(&mut self, n: BlockStmtOrExpr) -> BlockStmtOrExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_bool(&mut self, n: Bool) -> Bool
fn fold_bool(&mut self, n: Bool) -> Bool
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_break_stmt(&mut self, n: BreakStmt) -> BreakStmt
fn fold_break_stmt(&mut self, n: BreakStmt) -> BreakStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_call_expr(&mut self, n: CallExpr) -> CallExpr
fn fold_call_expr(&mut self, n: CallExpr) -> CallExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_callee(&mut self, n: Callee) -> Callee
fn fold_callee(&mut self, n: Callee) -> Callee
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_catch_clause(&mut self, n: CatchClause) -> CatchClause
fn fold_catch_clause(&mut self, n: CatchClause) -> CatchClause
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_class(&mut self, n: Class) -> Class
fn fold_class(&mut self, n: Class) -> Class
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_class_decl(&mut self, n: ClassDecl) -> ClassDecl
fn fold_class_decl(&mut self, n: ClassDecl) -> ClassDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_class_expr(&mut self, n: ClassExpr) -> ClassExpr
fn fold_class_expr(&mut self, n: ClassExpr) -> ClassExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_class_member(&mut self, n: ClassMember) -> ClassMember
fn fold_class_member(&mut self, n: ClassMember) -> ClassMember
This method can be overriden to customize the visitor behavior. Read more
fn fold_class_members(&mut self, n: Vec<ClassMember>) -> Vec<ClassMember>
source§fn fold_class_method(&mut self, n: ClassMethod) -> ClassMethod
fn fold_class_method(&mut self, n: ClassMethod) -> ClassMethod
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_class_prop(&mut self, n: ClassProp) -> ClassProp
fn fold_class_prop(&mut self, n: ClassProp) -> ClassProp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_computed_prop_name(&mut self, n: ComputedPropName) -> ComputedPropName
fn fold_computed_prop_name(&mut self, n: ComputedPropName) -> ComputedPropName
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_cond_expr(&mut self, n: CondExpr) -> CondExpr
fn fold_cond_expr(&mut self, n: CondExpr) -> CondExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_constructor(&mut self, n: Constructor) -> Constructor
fn fold_constructor(&mut self, n: Constructor) -> Constructor
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_continue_stmt(&mut self, n: ContinueStmt) -> ContinueStmt
fn fold_continue_stmt(&mut self, n: ContinueStmt) -> ContinueStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_debugger_stmt(&mut self, n: DebuggerStmt) -> DebuggerStmt
fn fold_debugger_stmt(&mut self, n: DebuggerStmt) -> DebuggerStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_decl(&mut self, n: Decl) -> Decl
fn fold_decl(&mut self, n: Decl) -> Decl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_decorator(&mut self, n: Decorator) -> Decorator
fn fold_decorator(&mut self, n: Decorator) -> Decorator
This method can be overriden to customize the visitor behavior. Read more
fn fold_decorators(&mut self, n: Vec<Decorator>) -> Vec<Decorator>
source§fn fold_default_decl(&mut self, n: DefaultDecl) -> DefaultDecl
fn fold_default_decl(&mut self, n: DefaultDecl) -> DefaultDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_do_while_stmt(&mut self, n: DoWhileStmt) -> DoWhileStmt
fn fold_do_while_stmt(&mut self, n: DoWhileStmt) -> DoWhileStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_empty_stmt(&mut self, n: EmptyStmt) -> EmptyStmt
fn fold_empty_stmt(&mut self, n: EmptyStmt) -> EmptyStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_export_all(&mut self, n: ExportAll) -> ExportAll
fn fold_export_all(&mut self, n: ExportAll) -> ExportAll
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_export_decl(&mut self, n: ExportDecl) -> ExportDecl
fn fold_export_decl(&mut self, n: ExportDecl) -> ExportDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_export_default_decl(
&mut self,
n: ExportDefaultDecl,
) -> ExportDefaultDecl
fn fold_export_default_decl( &mut self, n: ExportDefaultDecl, ) -> ExportDefaultDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_export_default_expr(
&mut self,
n: ExportDefaultExpr,
) -> ExportDefaultExpr
fn fold_export_default_expr( &mut self, n: ExportDefaultExpr, ) -> ExportDefaultExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_export_default_specifier(
&mut self,
n: ExportDefaultSpecifier,
) -> ExportDefaultSpecifier
fn fold_export_default_specifier( &mut self, n: ExportDefaultSpecifier, ) -> ExportDefaultSpecifier
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_export_named_specifier(
&mut self,
n: ExportNamedSpecifier,
) -> ExportNamedSpecifier
fn fold_export_named_specifier( &mut self, n: ExportNamedSpecifier, ) -> ExportNamedSpecifier
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_export_namespace_specifier(
&mut self,
n: ExportNamespaceSpecifier,
) -> ExportNamespaceSpecifier
fn fold_export_namespace_specifier( &mut self, n: ExportNamespaceSpecifier, ) -> ExportNamespaceSpecifier
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_export_specifier(&mut self, n: ExportSpecifier) -> ExportSpecifier
fn fold_export_specifier(&mut self, n: ExportSpecifier) -> ExportSpecifier
This method can be overriden to customize the visitor behavior. Read more
fn fold_export_specifiers( &mut self, n: Vec<ExportSpecifier>, ) -> Vec<ExportSpecifier>
source§fn fold_expr(&mut self, n: Expr) -> Expr
fn fold_expr(&mut self, n: Expr) -> Expr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_expr_or_spread(&mut self, n: ExprOrSpread) -> ExprOrSpread
fn fold_expr_or_spread(&mut self, n: ExprOrSpread) -> ExprOrSpread
This method can be overriden to customize the visitor behavior. Read more
fn fold_expr_or_spreads(&mut self, n: Vec<ExprOrSpread>) -> Vec<ExprOrSpread>
source§fn fold_expr_stmt(&mut self, n: ExprStmt) -> ExprStmt
fn fold_expr_stmt(&mut self, n: ExprStmt) -> ExprStmt
This method can be overriden to customize the visitor behavior. Read more
fn fold_exprs(&mut self, n: Vec<Box<Expr>>) -> Vec<Box<Expr>>
source§fn fold_fn_decl(&mut self, n: FnDecl) -> FnDecl
fn fold_fn_decl(&mut self, n: FnDecl) -> FnDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_fn_expr(&mut self, n: FnExpr) -> FnExpr
fn fold_fn_expr(&mut self, n: FnExpr) -> FnExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_for_in_stmt(&mut self, n: ForInStmt) -> ForInStmt
fn fold_for_in_stmt(&mut self, n: ForInStmt) -> ForInStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_for_of_stmt(&mut self, n: ForOfStmt) -> ForOfStmt
fn fold_for_of_stmt(&mut self, n: ForOfStmt) -> ForOfStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_for_stmt(&mut self, n: ForStmt) -> ForStmt
fn fold_for_stmt(&mut self, n: ForStmt) -> ForStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_function(&mut self, n: Function) -> Function
fn fold_function(&mut self, n: Function) -> Function
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_getter_prop(&mut self, n: GetterProp) -> GetterProp
fn fold_getter_prop(&mut self, n: GetterProp) -> GetterProp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ident(&mut self, n: Ident) -> Ident
fn fold_ident(&mut self, n: Ident) -> Ident
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_if_stmt(&mut self, n: IfStmt) -> IfStmt
fn fold_if_stmt(&mut self, n: IfStmt) -> IfStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_import(&mut self, n: Import) -> Import
fn fold_import(&mut self, n: Import) -> Import
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_import_decl(&mut self, n: ImportDecl) -> ImportDecl
fn fold_import_decl(&mut self, n: ImportDecl) -> ImportDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_import_default_specifier(
&mut self,
n: ImportDefaultSpecifier,
) -> ImportDefaultSpecifier
fn fold_import_default_specifier( &mut self, n: ImportDefaultSpecifier, ) -> ImportDefaultSpecifier
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_import_named_specifier(
&mut self,
n: ImportNamedSpecifier,
) -> ImportNamedSpecifier
fn fold_import_named_specifier( &mut self, n: ImportNamedSpecifier, ) -> ImportNamedSpecifier
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_import_specifier(&mut self, n: ImportSpecifier) -> ImportSpecifier
fn fold_import_specifier(&mut self, n: ImportSpecifier) -> ImportSpecifier
This method can be overriden to customize the visitor behavior. Read more
fn fold_import_specifiers( &mut self, n: Vec<ImportSpecifier>, ) -> Vec<ImportSpecifier>
source§fn fold_import_star_as_specifier(
&mut self,
n: ImportStarAsSpecifier,
) -> ImportStarAsSpecifier
fn fold_import_star_as_specifier( &mut self, n: ImportStarAsSpecifier, ) -> ImportStarAsSpecifier
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_invalid(&mut self, n: Invalid) -> Invalid
fn fold_invalid(&mut self, n: Invalid) -> Invalid
This method can be overriden to customize the visitor behavior. Read more
fn fold_js_word(&mut self, n: Atom<JsWordStaticSet>) -> Atom<JsWordStaticSet>
source§fn fold_jsx_attr(&mut self, n: JSXAttr) -> JSXAttr
fn fold_jsx_attr(&mut self, n: JSXAttr) -> JSXAttr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_attr_name(&mut self, n: JSXAttrName) -> JSXAttrName
fn fold_jsx_attr_name(&mut self, n: JSXAttrName) -> JSXAttrName
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_attr_or_spread(&mut self, n: JSXAttrOrSpread) -> JSXAttrOrSpread
fn fold_jsx_attr_or_spread(&mut self, n: JSXAttrOrSpread) -> JSXAttrOrSpread
This method can be overriden to customize the visitor behavior. Read more
fn fold_jsx_attr_or_spreads( &mut self, n: Vec<JSXAttrOrSpread>, ) -> Vec<JSXAttrOrSpread>
source§fn fold_jsx_attr_value(&mut self, n: JSXAttrValue) -> JSXAttrValue
fn fold_jsx_attr_value(&mut self, n: JSXAttrValue) -> JSXAttrValue
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_closing_element(
&mut self,
n: JSXClosingElement,
) -> JSXClosingElement
fn fold_jsx_closing_element( &mut self, n: JSXClosingElement, ) -> JSXClosingElement
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_closing_fragment(
&mut self,
n: JSXClosingFragment,
) -> JSXClosingFragment
fn fold_jsx_closing_fragment( &mut self, n: JSXClosingFragment, ) -> JSXClosingFragment
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_element(&mut self, n: JSXElement) -> JSXElement
fn fold_jsx_element(&mut self, n: JSXElement) -> JSXElement
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_element_child(&mut self, n: JSXElementChild) -> JSXElementChild
fn fold_jsx_element_child(&mut self, n: JSXElementChild) -> JSXElementChild
This method can be overriden to customize the visitor behavior. Read more
fn fold_jsx_element_children( &mut self, n: Vec<JSXElementChild>, ) -> Vec<JSXElementChild>
source§fn fold_jsx_element_name(&mut self, n: JSXElementName) -> JSXElementName
fn fold_jsx_element_name(&mut self, n: JSXElementName) -> JSXElementName
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_empty_expr(&mut self, n: JSXEmptyExpr) -> JSXEmptyExpr
fn fold_jsx_empty_expr(&mut self, n: JSXEmptyExpr) -> JSXEmptyExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_expr(&mut self, n: JSXExpr) -> JSXExpr
fn fold_jsx_expr(&mut self, n: JSXExpr) -> JSXExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_expr_container(&mut self, n: JSXExprContainer) -> JSXExprContainer
fn fold_jsx_expr_container(&mut self, n: JSXExprContainer) -> JSXExprContainer
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_fragment(&mut self, n: JSXFragment) -> JSXFragment
fn fold_jsx_fragment(&mut self, n: JSXFragment) -> JSXFragment
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_member_expr(&mut self, n: JSXMemberExpr) -> JSXMemberExpr
fn fold_jsx_member_expr(&mut self, n: JSXMemberExpr) -> JSXMemberExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_namespaced_name(
&mut self,
n: JSXNamespacedName,
) -> JSXNamespacedName
fn fold_jsx_namespaced_name( &mut self, n: JSXNamespacedName, ) -> JSXNamespacedName
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_object(&mut self, n: JSXObject) -> JSXObject
fn fold_jsx_object(&mut self, n: JSXObject) -> JSXObject
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_opening_element(
&mut self,
n: JSXOpeningElement,
) -> JSXOpeningElement
fn fold_jsx_opening_element( &mut self, n: JSXOpeningElement, ) -> JSXOpeningElement
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_opening_fragment(
&mut self,
n: JSXOpeningFragment,
) -> JSXOpeningFragment
fn fold_jsx_opening_fragment( &mut self, n: JSXOpeningFragment, ) -> JSXOpeningFragment
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_spread_child(&mut self, n: JSXSpreadChild) -> JSXSpreadChild
fn fold_jsx_spread_child(&mut self, n: JSXSpreadChild) -> JSXSpreadChild
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_jsx_text(&mut self, n: JSXText) -> JSXText
fn fold_jsx_text(&mut self, n: JSXText) -> JSXText
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_key_value_pat_prop(&mut self, n: KeyValuePatProp) -> KeyValuePatProp
fn fold_key_value_pat_prop(&mut self, n: KeyValuePatProp) -> KeyValuePatProp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_key_value_prop(&mut self, n: KeyValueProp) -> KeyValueProp
fn fold_key_value_prop(&mut self, n: KeyValueProp) -> KeyValueProp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_labeled_stmt(&mut self, n: LabeledStmt) -> LabeledStmt
fn fold_labeled_stmt(&mut self, n: LabeledStmt) -> LabeledStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_lit(&mut self, n: Lit) -> Lit
fn fold_lit(&mut self, n: Lit) -> Lit
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_member_expr(&mut self, n: MemberExpr) -> MemberExpr
fn fold_member_expr(&mut self, n: MemberExpr) -> MemberExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_member_prop(&mut self, n: MemberProp) -> MemberProp
fn fold_member_prop(&mut self, n: MemberProp) -> MemberProp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_meta_prop_expr(&mut self, n: MetaPropExpr) -> MetaPropExpr
fn fold_meta_prop_expr(&mut self, n: MetaPropExpr) -> MetaPropExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_meta_prop_kind(&mut self, n: MetaPropKind) -> MetaPropKind
fn fold_meta_prop_kind(&mut self, n: MetaPropKind) -> MetaPropKind
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_method_kind(&mut self, n: MethodKind) -> MethodKind
fn fold_method_kind(&mut self, n: MethodKind) -> MethodKind
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_method_prop(&mut self, n: MethodProp) -> MethodProp
fn fold_method_prop(&mut self, n: MethodProp) -> MethodProp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_module(&mut self, n: Module) -> Module
fn fold_module(&mut self, n: Module) -> Module
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_module_decl(&mut self, n: ModuleDecl) -> ModuleDecl
fn fold_module_decl(&mut self, n: ModuleDecl) -> ModuleDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_module_export_name(&mut self, n: ModuleExportName) -> ModuleExportName
fn fold_module_export_name(&mut self, n: ModuleExportName) -> ModuleExportName
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_module_item(&mut self, n: ModuleItem) -> ModuleItem
fn fold_module_item(&mut self, n: ModuleItem) -> ModuleItem
This method can be overriden to customize the visitor behavior. Read more
fn fold_module_items(&mut self, n: Vec<ModuleItem>) -> Vec<ModuleItem>
source§fn fold_named_export(&mut self, n: NamedExport) -> NamedExport
fn fold_named_export(&mut self, n: NamedExport) -> NamedExport
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_new_expr(&mut self, n: NewExpr) -> NewExpr
fn fold_new_expr(&mut self, n: NewExpr) -> NewExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_null(&mut self, n: Null) -> Null
fn fold_null(&mut self, n: Null) -> Null
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_number(&mut self, n: Number) -> Number
fn fold_number(&mut self, n: Number) -> Number
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_object_lit(&mut self, n: ObjectLit) -> ObjectLit
fn fold_object_lit(&mut self, n: ObjectLit) -> ObjectLit
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_object_pat(&mut self, n: ObjectPat) -> ObjectPat
fn fold_object_pat(&mut self, n: ObjectPat) -> ObjectPat
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_object_pat_prop(&mut self, n: ObjectPatProp) -> ObjectPatProp
fn fold_object_pat_prop(&mut self, n: ObjectPatProp) -> ObjectPatProp
This method can be overriden to customize the visitor behavior. Read more
fn fold_object_pat_props(&mut self, n: Vec<ObjectPatProp>) -> Vec<ObjectPatProp>
fn fold_opt_accessibility( &mut self, n: Option<Accessibility>, ) -> Option<Accessibility>
fn fold_opt_atom(&mut self, n: Option<Atom>) -> Option<Atom>
fn fold_opt_block_stmt(&mut self, n: Option<BlockStmt>) -> Option<BlockStmt>
source§fn fold_opt_call(&mut self, n: OptCall) -> OptCall
fn fold_opt_call(&mut self, n: OptCall) -> OptCall
This method can be overriden to customize the visitor behavior. Read more
fn fold_opt_catch_clause( &mut self, n: Option<CatchClause>, ) -> Option<CatchClause>
source§fn fold_opt_chain_base(&mut self, n: OptChainBase) -> OptChainBase
fn fold_opt_chain_base(&mut self, n: OptChainBase) -> OptChainBase
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_opt_chain_expr(&mut self, n: OptChainExpr) -> OptChainExpr
fn fold_opt_chain_expr(&mut self, n: OptChainExpr) -> OptChainExpr
This method can be overriden to customize the visitor behavior. Read more
fn fold_opt_expr(&mut self, n: Option<Box<Expr>>) -> Option<Box<Expr>>
fn fold_opt_expr_or_spread( &mut self, n: Option<ExprOrSpread>, ) -> Option<ExprOrSpread>
fn fold_opt_expr_or_spreads( &mut self, n: Option<Vec<ExprOrSpread>>, ) -> Option<Vec<ExprOrSpread>>
fn fold_opt_ident(&mut self, n: Option<Ident>) -> Option<Ident>
fn fold_opt_jsx_attr_value( &mut self, n: Option<JSXAttrValue>, ) -> Option<JSXAttrValue>
fn fold_opt_jsx_closing_element( &mut self, n: Option<JSXClosingElement>, ) -> Option<JSXClosingElement>
fn fold_opt_module_export_name( &mut self, n: Option<ModuleExportName>, ) -> Option<ModuleExportName>
fn fold_opt_module_items( &mut self, n: Option<Vec<ModuleItem>>, ) -> Option<Vec<ModuleItem>>
fn fold_opt_object_lit( &mut self, n: Option<Box<ObjectLit>>, ) -> Option<Box<ObjectLit>>
fn fold_opt_pat(&mut self, n: Option<Pat>) -> Option<Pat>
fn fold_opt_span(&mut self, n: Option<Span>) -> Option<Span>
fn fold_opt_stmt(&mut self, n: Option<Box<Stmt>>) -> Option<Box<Stmt>>
fn fold_opt_str(&mut self, n: Option<Box<Str>>) -> Option<Box<Str>>
fn fold_opt_true_plus_minus( &mut self, n: Option<TruePlusMinus>, ) -> Option<TruePlusMinus>
fn fold_opt_ts_entity_name( &mut self, n: Option<TsEntityName>, ) -> Option<TsEntityName>
fn fold_opt_ts_namespace_body( &mut self, n: Option<TsNamespaceBody>, ) -> Option<TsNamespaceBody>
fn fold_opt_ts_type(&mut self, n: Option<Box<TsType>>) -> Option<Box<TsType>>
fn fold_opt_ts_type_ann( &mut self, n: Option<Box<TsTypeAnn>>, ) -> Option<Box<TsTypeAnn>>
fn fold_opt_ts_type_param_decl( &mut self, n: Option<Box<TsTypeParamDecl>>, ) -> Option<Box<TsTypeParamDecl>>
fn fold_opt_ts_type_param_instantiation( &mut self, n: Option<Box<TsTypeParamInstantiation>>, ) -> Option<Box<TsTypeParamInstantiation>>
fn fold_opt_var_decl_or_expr( &mut self, n: Option<VarDeclOrExpr>, ) -> Option<VarDeclOrExpr>
fn fold_opt_vec_expr_or_spreads( &mut self, n: Vec<Option<ExprOrSpread>>, ) -> Vec<Option<ExprOrSpread>>
fn fold_opt_vec_pats(&mut self, n: Vec<Option<Pat>>) -> Vec<Option<Pat>>
source§fn fold_param(&mut self, n: Param) -> Param
fn fold_param(&mut self, n: Param) -> Param
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_param_or_ts_param_prop(
&mut self,
n: ParamOrTsParamProp,
) -> ParamOrTsParamProp
fn fold_param_or_ts_param_prop( &mut self, n: ParamOrTsParamProp, ) -> ParamOrTsParamProp
This method can be overriden to customize the visitor behavior. Read more
fn fold_param_or_ts_param_props( &mut self, n: Vec<ParamOrTsParamProp>, ) -> Vec<ParamOrTsParamProp>
fn fold_params(&mut self, n: Vec<Param>) -> Vec<Param>
source§fn fold_paren_expr(&mut self, n: ParenExpr) -> ParenExpr
fn fold_paren_expr(&mut self, n: ParenExpr) -> ParenExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_pat(&mut self, n: Pat) -> Pat
fn fold_pat(&mut self, n: Pat) -> Pat
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_pat_or_expr(&mut self, n: PatOrExpr) -> PatOrExpr
fn fold_pat_or_expr(&mut self, n: PatOrExpr) -> PatOrExpr
This method can be overriden to customize the visitor behavior. Read more
fn fold_pats(&mut self, n: Vec<Pat>) -> Vec<Pat>
source§fn fold_private_method(&mut self, n: PrivateMethod) -> PrivateMethod
fn fold_private_method(&mut self, n: PrivateMethod) -> PrivateMethod
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_private_name(&mut self, n: PrivateName) -> PrivateName
fn fold_private_name(&mut self, n: PrivateName) -> PrivateName
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_private_prop(&mut self, n: PrivateProp) -> PrivateProp
fn fold_private_prop(&mut self, n: PrivateProp) -> PrivateProp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_program(&mut self, n: Program) -> Program
fn fold_program(&mut self, n: Program) -> Program
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_prop(&mut self, n: Prop) -> Prop
fn fold_prop(&mut self, n: Prop) -> Prop
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_prop_name(&mut self, n: PropName) -> PropName
fn fold_prop_name(&mut self, n: PropName) -> PropName
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_prop_or_spread(&mut self, n: PropOrSpread) -> PropOrSpread
fn fold_prop_or_spread(&mut self, n: PropOrSpread) -> PropOrSpread
This method can be overriden to customize the visitor behavior. Read more
fn fold_prop_or_spreads(&mut self, n: Vec<PropOrSpread>) -> Vec<PropOrSpread>
source§fn fold_regex(&mut self, n: Regex) -> Regex
fn fold_regex(&mut self, n: Regex) -> Regex
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_reserved_unused(&mut self, n: ReservedUnused) -> ReservedUnused
fn fold_reserved_unused(&mut self, n: ReservedUnused) -> ReservedUnused
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_rest_pat(&mut self, n: RestPat) -> RestPat
fn fold_rest_pat(&mut self, n: RestPat) -> RestPat
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_return_stmt(&mut self, n: ReturnStmt) -> ReturnStmt
fn fold_return_stmt(&mut self, n: ReturnStmt) -> ReturnStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_script(&mut self, n: Script) -> Script
fn fold_script(&mut self, n: Script) -> Script
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_seq_expr(&mut self, n: SeqExpr) -> SeqExpr
fn fold_seq_expr(&mut self, n: SeqExpr) -> SeqExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_setter_prop(&mut self, n: SetterProp) -> SetterProp
fn fold_setter_prop(&mut self, n: SetterProp) -> SetterProp
This method can be overriden to customize the visitor behavior. Read more
fn fold_span(&mut self, n: Span) -> Span
source§fn fold_spread_element(&mut self, n: SpreadElement) -> SpreadElement
fn fold_spread_element(&mut self, n: SpreadElement) -> SpreadElement
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_static_block(&mut self, n: StaticBlock) -> StaticBlock
fn fold_static_block(&mut self, n: StaticBlock) -> StaticBlock
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_stmt(&mut self, n: Stmt) -> Stmt
fn fold_stmt(&mut self, n: Stmt) -> Stmt
This method can be overriden to customize the visitor behavior. Read more
fn fold_stmts(&mut self, n: Vec<Stmt>) -> Vec<Stmt>
source§fn fold_str(&mut self, n: Str) -> Str
fn fold_str(&mut self, n: Str) -> Str
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_super(&mut self, n: Super) -> Super
fn fold_super(&mut self, n: Super) -> Super
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_super_prop(&mut self, n: SuperProp) -> SuperProp
fn fold_super_prop(&mut self, n: SuperProp) -> SuperProp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_super_prop_expr(&mut self, n: SuperPropExpr) -> SuperPropExpr
fn fold_super_prop_expr(&mut self, n: SuperPropExpr) -> SuperPropExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_switch_case(&mut self, n: SwitchCase) -> SwitchCase
fn fold_switch_case(&mut self, n: SwitchCase) -> SwitchCase
This method can be overriden to customize the visitor behavior. Read more
fn fold_switch_cases(&mut self, n: Vec<SwitchCase>) -> Vec<SwitchCase>
source§fn fold_switch_stmt(&mut self, n: SwitchStmt) -> SwitchStmt
fn fold_switch_stmt(&mut self, n: SwitchStmt) -> SwitchStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_tagged_tpl(&mut self, n: TaggedTpl) -> TaggedTpl
fn fold_tagged_tpl(&mut self, n: TaggedTpl) -> TaggedTpl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_this_expr(&mut self, n: ThisExpr) -> ThisExpr
fn fold_this_expr(&mut self, n: ThisExpr) -> ThisExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_throw_stmt(&mut self, n: ThrowStmt) -> ThrowStmt
fn fold_throw_stmt(&mut self, n: ThrowStmt) -> ThrowStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_tpl(&mut self, n: Tpl) -> Tpl
fn fold_tpl(&mut self, n: Tpl) -> Tpl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_tpl_element(&mut self, n: TplElement) -> TplElement
fn fold_tpl_element(&mut self, n: TplElement) -> TplElement
This method can be overriden to customize the visitor behavior. Read more
fn fold_tpl_elements(&mut self, n: Vec<TplElement>) -> Vec<TplElement>
source§fn fold_true_plus_minus(&mut self, n: TruePlusMinus) -> TruePlusMinus
fn fold_true_plus_minus(&mut self, n: TruePlusMinus) -> TruePlusMinus
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_try_stmt(&mut self, n: TryStmt) -> TryStmt
fn fold_try_stmt(&mut self, n: TryStmt) -> TryStmt
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_array_type(&mut self, n: TsArrayType) -> TsArrayType
fn fold_ts_array_type(&mut self, n: TsArrayType) -> TsArrayType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_as_expr(&mut self, n: TsAsExpr) -> TsAsExpr
fn fold_ts_as_expr(&mut self, n: TsAsExpr) -> TsAsExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_call_signature_decl(
&mut self,
n: TsCallSignatureDecl,
) -> TsCallSignatureDecl
fn fold_ts_call_signature_decl( &mut self, n: TsCallSignatureDecl, ) -> TsCallSignatureDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_conditional_type(
&mut self,
n: TsConditionalType,
) -> TsConditionalType
fn fold_ts_conditional_type( &mut self, n: TsConditionalType, ) -> TsConditionalType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_const_assertion(&mut self, n: TsConstAssertion) -> TsConstAssertion
fn fold_ts_const_assertion(&mut self, n: TsConstAssertion) -> TsConstAssertion
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_construct_signature_decl(
&mut self,
n: TsConstructSignatureDecl,
) -> TsConstructSignatureDecl
fn fold_ts_construct_signature_decl( &mut self, n: TsConstructSignatureDecl, ) -> TsConstructSignatureDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_constructor_type(
&mut self,
n: TsConstructorType,
) -> TsConstructorType
fn fold_ts_constructor_type( &mut self, n: TsConstructorType, ) -> TsConstructorType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_entity_name(&mut self, n: TsEntityName) -> TsEntityName
fn fold_ts_entity_name(&mut self, n: TsEntityName) -> TsEntityName
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_enum_decl(&mut self, n: TsEnumDecl) -> TsEnumDecl
fn fold_ts_enum_decl(&mut self, n: TsEnumDecl) -> TsEnumDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_enum_member(&mut self, n: TsEnumMember) -> TsEnumMember
fn fold_ts_enum_member(&mut self, n: TsEnumMember) -> TsEnumMember
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_enum_member_id(&mut self, n: TsEnumMemberId) -> TsEnumMemberId
fn fold_ts_enum_member_id(&mut self, n: TsEnumMemberId) -> TsEnumMemberId
This method can be overriden to customize the visitor behavior. Read more
fn fold_ts_enum_members(&mut self, n: Vec<TsEnumMember>) -> Vec<TsEnumMember>
source§fn fold_ts_export_assignment(
&mut self,
n: TsExportAssignment,
) -> TsExportAssignment
fn fold_ts_export_assignment( &mut self, n: TsExportAssignment, ) -> TsExportAssignment
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_expr_with_type_args(
&mut self,
n: TsExprWithTypeArgs,
) -> TsExprWithTypeArgs
fn fold_ts_expr_with_type_args( &mut self, n: TsExprWithTypeArgs, ) -> TsExprWithTypeArgs
This method can be overriden to customize the visitor behavior. Read more
fn fold_ts_expr_with_type_args_vec( &mut self, n: Vec<TsExprWithTypeArgs>, ) -> Vec<TsExprWithTypeArgs>
source§fn fold_ts_external_module_ref(
&mut self,
n: TsExternalModuleRef,
) -> TsExternalModuleRef
fn fold_ts_external_module_ref( &mut self, n: TsExternalModuleRef, ) -> TsExternalModuleRef
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_fn_or_constructor_type(
&mut self,
n: TsFnOrConstructorType,
) -> TsFnOrConstructorType
fn fold_ts_fn_or_constructor_type( &mut self, n: TsFnOrConstructorType, ) -> TsFnOrConstructorType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_fn_param(&mut self, n: TsFnParam) -> TsFnParam
fn fold_ts_fn_param(&mut self, n: TsFnParam) -> TsFnParam
This method can be overriden to customize the visitor behavior. Read more
fn fold_ts_fn_params(&mut self, n: Vec<TsFnParam>) -> Vec<TsFnParam>
source§fn fold_ts_fn_type(&mut self, n: TsFnType) -> TsFnType
fn fold_ts_fn_type(&mut self, n: TsFnType) -> TsFnType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_getter_signature(
&mut self,
n: TsGetterSignature,
) -> TsGetterSignature
fn fold_ts_getter_signature( &mut self, n: TsGetterSignature, ) -> TsGetterSignature
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_import_equals_decl(
&mut self,
n: TsImportEqualsDecl,
) -> TsImportEqualsDecl
fn fold_ts_import_equals_decl( &mut self, n: TsImportEqualsDecl, ) -> TsImportEqualsDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_import_type(&mut self, n: TsImportType) -> TsImportType
fn fold_ts_import_type(&mut self, n: TsImportType) -> TsImportType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_index_signature(&mut self, n: TsIndexSignature) -> TsIndexSignature
fn fold_ts_index_signature(&mut self, n: TsIndexSignature) -> TsIndexSignature
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_indexed_access_type(
&mut self,
n: TsIndexedAccessType,
) -> TsIndexedAccessType
fn fold_ts_indexed_access_type( &mut self, n: TsIndexedAccessType, ) -> TsIndexedAccessType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_infer_type(&mut self, n: TsInferType) -> TsInferType
fn fold_ts_infer_type(&mut self, n: TsInferType) -> TsInferType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_instantiation(&mut self, n: TsInstantiation) -> TsInstantiation
fn fold_ts_instantiation(&mut self, n: TsInstantiation) -> TsInstantiation
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_interface_body(&mut self, n: TsInterfaceBody) -> TsInterfaceBody
fn fold_ts_interface_body(&mut self, n: TsInterfaceBody) -> TsInterfaceBody
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_interface_decl(&mut self, n: TsInterfaceDecl) -> TsInterfaceDecl
fn fold_ts_interface_decl(&mut self, n: TsInterfaceDecl) -> TsInterfaceDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_intersection_type(
&mut self,
n: TsIntersectionType,
) -> TsIntersectionType
fn fold_ts_intersection_type( &mut self, n: TsIntersectionType, ) -> TsIntersectionType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_keyword_type(&mut self, n: TsKeywordType) -> TsKeywordType
fn fold_ts_keyword_type(&mut self, n: TsKeywordType) -> TsKeywordType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_keyword_type_kind(
&mut self,
n: TsKeywordTypeKind,
) -> TsKeywordTypeKind
fn fold_ts_keyword_type_kind( &mut self, n: TsKeywordTypeKind, ) -> TsKeywordTypeKind
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_lit(&mut self, n: TsLit) -> TsLit
fn fold_ts_lit(&mut self, n: TsLit) -> TsLit
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_lit_type(&mut self, n: TsLitType) -> TsLitType
fn fold_ts_lit_type(&mut self, n: TsLitType) -> TsLitType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_mapped_type(&mut self, n: TsMappedType) -> TsMappedType
fn fold_ts_mapped_type(&mut self, n: TsMappedType) -> TsMappedType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_method_signature(
&mut self,
n: TsMethodSignature,
) -> TsMethodSignature
fn fold_ts_method_signature( &mut self, n: TsMethodSignature, ) -> TsMethodSignature
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_module_block(&mut self, n: TsModuleBlock) -> TsModuleBlock
fn fold_ts_module_block(&mut self, n: TsModuleBlock) -> TsModuleBlock
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_module_decl(&mut self, n: TsModuleDecl) -> TsModuleDecl
fn fold_ts_module_decl(&mut self, n: TsModuleDecl) -> TsModuleDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_module_name(&mut self, n: TsModuleName) -> TsModuleName
fn fold_ts_module_name(&mut self, n: TsModuleName) -> TsModuleName
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_module_ref(&mut self, n: TsModuleRef) -> TsModuleRef
fn fold_ts_module_ref(&mut self, n: TsModuleRef) -> TsModuleRef
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_namespace_body(&mut self, n: TsNamespaceBody) -> TsNamespaceBody
fn fold_ts_namespace_body(&mut self, n: TsNamespaceBody) -> TsNamespaceBody
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_namespace_decl(&mut self, n: TsNamespaceDecl) -> TsNamespaceDecl
fn fold_ts_namespace_decl(&mut self, n: TsNamespaceDecl) -> TsNamespaceDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_namespace_export_decl(
&mut self,
n: TsNamespaceExportDecl,
) -> TsNamespaceExportDecl
fn fold_ts_namespace_export_decl( &mut self, n: TsNamespaceExportDecl, ) -> TsNamespaceExportDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_non_null_expr(&mut self, n: TsNonNullExpr) -> TsNonNullExpr
fn fold_ts_non_null_expr(&mut self, n: TsNonNullExpr) -> TsNonNullExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_optional_type(&mut self, n: TsOptionalType) -> TsOptionalType
fn fold_ts_optional_type(&mut self, n: TsOptionalType) -> TsOptionalType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_param_prop(&mut self, n: TsParamProp) -> TsParamProp
fn fold_ts_param_prop(&mut self, n: TsParamProp) -> TsParamProp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_param_prop_param(&mut self, n: TsParamPropParam) -> TsParamPropParam
fn fold_ts_param_prop_param(&mut self, n: TsParamPropParam) -> TsParamPropParam
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_parenthesized_type(
&mut self,
n: TsParenthesizedType,
) -> TsParenthesizedType
fn fold_ts_parenthesized_type( &mut self, n: TsParenthesizedType, ) -> TsParenthesizedType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_property_signature(
&mut self,
n: TsPropertySignature,
) -> TsPropertySignature
fn fold_ts_property_signature( &mut self, n: TsPropertySignature, ) -> TsPropertySignature
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_qualified_name(&mut self, n: TsQualifiedName) -> TsQualifiedName
fn fold_ts_qualified_name(&mut self, n: TsQualifiedName) -> TsQualifiedName
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_rest_type(&mut self, n: TsRestType) -> TsRestType
fn fold_ts_rest_type(&mut self, n: TsRestType) -> TsRestType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_satisfies_expr(&mut self, n: TsSatisfiesExpr) -> TsSatisfiesExpr
fn fold_ts_satisfies_expr(&mut self, n: TsSatisfiesExpr) -> TsSatisfiesExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_setter_signature(
&mut self,
n: TsSetterSignature,
) -> TsSetterSignature
fn fold_ts_setter_signature( &mut self, n: TsSetterSignature, ) -> TsSetterSignature
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_this_type(&mut self, n: TsThisType) -> TsThisType
fn fold_ts_this_type(&mut self, n: TsThisType) -> TsThisType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_this_type_or_ident(
&mut self,
n: TsThisTypeOrIdent,
) -> TsThisTypeOrIdent
fn fold_ts_this_type_or_ident( &mut self, n: TsThisTypeOrIdent, ) -> TsThisTypeOrIdent
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_tpl_lit_type(&mut self, n: TsTplLitType) -> TsTplLitType
fn fold_ts_tpl_lit_type(&mut self, n: TsTplLitType) -> TsTplLitType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_tuple_element(&mut self, n: TsTupleElement) -> TsTupleElement
fn fold_ts_tuple_element(&mut self, n: TsTupleElement) -> TsTupleElement
This method can be overriden to customize the visitor behavior. Read more
fn fold_ts_tuple_elements( &mut self, n: Vec<TsTupleElement>, ) -> Vec<TsTupleElement>
source§fn fold_ts_tuple_type(&mut self, n: TsTupleType) -> TsTupleType
fn fold_ts_tuple_type(&mut self, n: TsTupleType) -> TsTupleType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type(&mut self, n: TsType) -> TsType
fn fold_ts_type(&mut self, n: TsType) -> TsType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_alias_decl(&mut self, n: TsTypeAliasDecl) -> TsTypeAliasDecl
fn fold_ts_type_alias_decl(&mut self, n: TsTypeAliasDecl) -> TsTypeAliasDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_ann(&mut self, n: TsTypeAnn) -> TsTypeAnn
fn fold_ts_type_ann(&mut self, n: TsTypeAnn) -> TsTypeAnn
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_assertion(&mut self, n: TsTypeAssertion) -> TsTypeAssertion
fn fold_ts_type_assertion(&mut self, n: TsTypeAssertion) -> TsTypeAssertion
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_element(&mut self, n: TsTypeElement) -> TsTypeElement
fn fold_ts_type_element(&mut self, n: TsTypeElement) -> TsTypeElement
This method can be overriden to customize the visitor behavior. Read more
fn fold_ts_type_elements(&mut self, n: Vec<TsTypeElement>) -> Vec<TsTypeElement>
source§fn fold_ts_type_lit(&mut self, n: TsTypeLit) -> TsTypeLit
fn fold_ts_type_lit(&mut self, n: TsTypeLit) -> TsTypeLit
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_operator(&mut self, n: TsTypeOperator) -> TsTypeOperator
fn fold_ts_type_operator(&mut self, n: TsTypeOperator) -> TsTypeOperator
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_operator_op(&mut self, n: TsTypeOperatorOp) -> TsTypeOperatorOp
fn fold_ts_type_operator_op(&mut self, n: TsTypeOperatorOp) -> TsTypeOperatorOp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_param(&mut self, n: TsTypeParam) -> TsTypeParam
fn fold_ts_type_param(&mut self, n: TsTypeParam) -> TsTypeParam
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_param_decl(&mut self, n: TsTypeParamDecl) -> TsTypeParamDecl
fn fold_ts_type_param_decl(&mut self, n: TsTypeParamDecl) -> TsTypeParamDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_param_instantiation(
&mut self,
n: TsTypeParamInstantiation,
) -> TsTypeParamInstantiation
fn fold_ts_type_param_instantiation( &mut self, n: TsTypeParamInstantiation, ) -> TsTypeParamInstantiation
This method can be overriden to customize the visitor behavior. Read more
fn fold_ts_type_params(&mut self, n: Vec<TsTypeParam>) -> Vec<TsTypeParam>
source§fn fold_ts_type_predicate(&mut self, n: TsTypePredicate) -> TsTypePredicate
fn fold_ts_type_predicate(&mut self, n: TsTypePredicate) -> TsTypePredicate
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_query(&mut self, n: TsTypeQuery) -> TsTypeQuery
fn fold_ts_type_query(&mut self, n: TsTypeQuery) -> TsTypeQuery
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_query_expr(&mut self, n: TsTypeQueryExpr) -> TsTypeQueryExpr
fn fold_ts_type_query_expr(&mut self, n: TsTypeQueryExpr) -> TsTypeQueryExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_type_ref(&mut self, n: TsTypeRef) -> TsTypeRef
fn fold_ts_type_ref(&mut self, n: TsTypeRef) -> TsTypeRef
This method can be overriden to customize the visitor behavior. Read more
fn fold_ts_types(&mut self, n: Vec<Box<TsType>>) -> Vec<Box<TsType>>
source§fn fold_ts_union_or_intersection_type(
&mut self,
n: TsUnionOrIntersectionType,
) -> TsUnionOrIntersectionType
fn fold_ts_union_or_intersection_type( &mut self, n: TsUnionOrIntersectionType, ) -> TsUnionOrIntersectionType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_ts_union_type(&mut self, n: TsUnionType) -> TsUnionType
fn fold_ts_union_type(&mut self, n: TsUnionType) -> TsUnionType
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_unary_expr(&mut self, n: UnaryExpr) -> UnaryExpr
fn fold_unary_expr(&mut self, n: UnaryExpr) -> UnaryExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_unary_op(&mut self, n: UnaryOp) -> UnaryOp
fn fold_unary_op(&mut self, n: UnaryOp) -> UnaryOp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_update_expr(&mut self, n: UpdateExpr) -> UpdateExpr
fn fold_update_expr(&mut self, n: UpdateExpr) -> UpdateExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_update_op(&mut self, n: UpdateOp) -> UpdateOp
fn fold_update_op(&mut self, n: UpdateOp) -> UpdateOp
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_var_decl(&mut self, n: VarDecl) -> VarDecl
fn fold_var_decl(&mut self, n: VarDecl) -> VarDecl
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_var_decl_kind(&mut self, n: VarDeclKind) -> VarDeclKind
fn fold_var_decl_kind(&mut self, n: VarDeclKind) -> VarDeclKind
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_var_decl_or_expr(&mut self, n: VarDeclOrExpr) -> VarDeclOrExpr
fn fold_var_decl_or_expr(&mut self, n: VarDeclOrExpr) -> VarDeclOrExpr
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_var_decl_or_pat(&mut self, n: VarDeclOrPat) -> VarDeclOrPat
fn fold_var_decl_or_pat(&mut self, n: VarDeclOrPat) -> VarDeclOrPat
This method can be overriden to customize the visitor behavior. Read more
source§fn fold_var_declarator(&mut self, n: VarDeclarator) -> VarDeclarator
fn fold_var_declarator(&mut self, n: VarDeclarator) -> VarDeclarator
This method can be overriden to customize the visitor behavior. Read more
fn fold_var_declarators(&mut self, n: Vec<VarDeclarator>) -> Vec<VarDeclarator>
source§fn fold_while_stmt(&mut self, n: WhileStmt) -> WhileStmt
fn fold_while_stmt(&mut self, n: WhileStmt) -> WhileStmt
This method can be overriden to customize the visitor behavior. Read more
source§impl<V> Visit for Optional<V>where
V: Visit,
impl<V> Visit for Optional<V>where
V: Visit,
source§fn visit_accessibility(&mut self, n: &Accessibility)
fn visit_accessibility(&mut self, n: &Accessibility)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_array_lit(&mut self, n: &ArrayLit)
fn visit_array_lit(&mut self, n: &ArrayLit)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_array_pat(&mut self, n: &ArrayPat)
fn visit_array_pat(&mut self, n: &ArrayPat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_arrow_expr(&mut self, n: &ArrowExpr)
fn visit_arrow_expr(&mut self, n: &ArrowExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_assign_expr(&mut self, n: &AssignExpr)
fn visit_assign_expr(&mut self, n: &AssignExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_assign_op(&mut self, n: &AssignOp)
fn visit_assign_op(&mut self, n: &AssignOp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_assign_pat(&mut self, n: &AssignPat)
fn visit_assign_pat(&mut self, n: &AssignPat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_assign_pat_prop(&mut self, n: &AssignPatProp)
fn visit_assign_pat_prop(&mut self, n: &AssignPatProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_assign_prop(&mut self, n: &AssignProp)
fn visit_assign_prop(&mut self, n: &AssignProp)
This method can be overriden to customize the visitor behavior. Read more
fn visit_atom(&mut self, n: &Atom)
source§fn visit_await_expr(&mut self, n: &AwaitExpr)
fn visit_await_expr(&mut self, n: &AwaitExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_big_int(&mut self, n: &BigInt)
fn visit_big_int(&mut self, n: &BigInt)
This method can be overriden to customize the visitor behavior. Read more
fn visit_big_int_value(&mut self, n: &BigInt)
source§fn visit_bin_expr(&mut self, n: &BinExpr)
fn visit_bin_expr(&mut self, n: &BinExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_binary_op(&mut self, n: &BinaryOp)
fn visit_binary_op(&mut self, n: &BinaryOp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_binding_ident(&mut self, n: &BindingIdent)
fn visit_binding_ident(&mut self, n: &BindingIdent)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_block_stmt(&mut self, n: &BlockStmt)
fn visit_block_stmt(&mut self, n: &BlockStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_block_stmt_or_expr(&mut self, n: &BlockStmtOrExpr)
fn visit_block_stmt_or_expr(&mut self, n: &BlockStmtOrExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_bool(&mut self, n: &Bool)
fn visit_bool(&mut self, n: &Bool)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_break_stmt(&mut self, n: &BreakStmt)
fn visit_break_stmt(&mut self, n: &BreakStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_call_expr(&mut self, n: &CallExpr)
fn visit_call_expr(&mut self, n: &CallExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_callee(&mut self, n: &Callee)
fn visit_callee(&mut self, n: &Callee)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_catch_clause(&mut self, n: &CatchClause)
fn visit_catch_clause(&mut self, n: &CatchClause)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_class(&mut self, n: &Class)
fn visit_class(&mut self, n: &Class)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_class_decl(&mut self, n: &ClassDecl)
fn visit_class_decl(&mut self, n: &ClassDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_class_expr(&mut self, n: &ClassExpr)
fn visit_class_expr(&mut self, n: &ClassExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_class_member(&mut self, n: &ClassMember)
fn visit_class_member(&mut self, n: &ClassMember)
This method can be overriden to customize the visitor behavior. Read more
fn visit_class_members(&mut self, n: &[ClassMember])
source§fn visit_class_method(&mut self, n: &ClassMethod)
fn visit_class_method(&mut self, n: &ClassMethod)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_class_prop(&mut self, n: &ClassProp)
fn visit_class_prop(&mut self, n: &ClassProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_computed_prop_name(&mut self, n: &ComputedPropName)
fn visit_computed_prop_name(&mut self, n: &ComputedPropName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_cond_expr(&mut self, n: &CondExpr)
fn visit_cond_expr(&mut self, n: &CondExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_constructor(&mut self, n: &Constructor)
fn visit_constructor(&mut self, n: &Constructor)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_continue_stmt(&mut self, n: &ContinueStmt)
fn visit_continue_stmt(&mut self, n: &ContinueStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_debugger_stmt(&mut self, n: &DebuggerStmt)
fn visit_debugger_stmt(&mut self, n: &DebuggerStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_decl(&mut self, n: &Decl)
fn visit_decl(&mut self, n: &Decl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_decorator(&mut self, n: &Decorator)
fn visit_decorator(&mut self, n: &Decorator)
This method can be overriden to customize the visitor behavior. Read more
fn visit_decorators(&mut self, n: &[Decorator])
source§fn visit_default_decl(&mut self, n: &DefaultDecl)
fn visit_default_decl(&mut self, n: &DefaultDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_do_while_stmt(&mut self, n: &DoWhileStmt)
fn visit_do_while_stmt(&mut self, n: &DoWhileStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_empty_stmt(&mut self, n: &EmptyStmt)
fn visit_empty_stmt(&mut self, n: &EmptyStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_export_all(&mut self, n: &ExportAll)
fn visit_export_all(&mut self, n: &ExportAll)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_export_decl(&mut self, n: &ExportDecl)
fn visit_export_decl(&mut self, n: &ExportDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_export_default_decl(&mut self, n: &ExportDefaultDecl)
fn visit_export_default_decl(&mut self, n: &ExportDefaultDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_export_default_expr(&mut self, n: &ExportDefaultExpr)
fn visit_export_default_expr(&mut self, n: &ExportDefaultExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_export_default_specifier(&mut self, n: &ExportDefaultSpecifier)
fn visit_export_default_specifier(&mut self, n: &ExportDefaultSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_export_named_specifier(&mut self, n: &ExportNamedSpecifier)
fn visit_export_named_specifier(&mut self, n: &ExportNamedSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_export_namespace_specifier(&mut self, n: &ExportNamespaceSpecifier)
fn visit_export_namespace_specifier(&mut self, n: &ExportNamespaceSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_export_specifier(&mut self, n: &ExportSpecifier)
fn visit_export_specifier(&mut self, n: &ExportSpecifier)
This method can be overriden to customize the visitor behavior. Read more
fn visit_export_specifiers(&mut self, n: &[ExportSpecifier])
source§fn visit_expr(&mut self, n: &Expr)
fn visit_expr(&mut self, n: &Expr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_expr_or_spread(&mut self, n: &ExprOrSpread)
fn visit_expr_or_spread(&mut self, n: &ExprOrSpread)
This method can be overriden to customize the visitor behavior. Read more
fn visit_expr_or_spreads(&mut self, n: &[ExprOrSpread])
source§fn visit_expr_stmt(&mut self, n: &ExprStmt)
fn visit_expr_stmt(&mut self, n: &ExprStmt)
This method can be overriden to customize the visitor behavior. Read more
fn visit_exprs(&mut self, n: &[Box<Expr>])
source§fn visit_fn_decl(&mut self, n: &FnDecl)
fn visit_fn_decl(&mut self, n: &FnDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_fn_expr(&mut self, n: &FnExpr)
fn visit_fn_expr(&mut self, n: &FnExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_for_in_stmt(&mut self, n: &ForInStmt)
fn visit_for_in_stmt(&mut self, n: &ForInStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_for_of_stmt(&mut self, n: &ForOfStmt)
fn visit_for_of_stmt(&mut self, n: &ForOfStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_for_stmt(&mut self, n: &ForStmt)
fn visit_for_stmt(&mut self, n: &ForStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_function(&mut self, n: &Function)
fn visit_function(&mut self, n: &Function)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_getter_prop(&mut self, n: &GetterProp)
fn visit_getter_prop(&mut self, n: &GetterProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ident(&mut self, n: &Ident)
fn visit_ident(&mut self, n: &Ident)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_if_stmt(&mut self, n: &IfStmt)
fn visit_if_stmt(&mut self, n: &IfStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_import(&mut self, n: &Import)
fn visit_import(&mut self, n: &Import)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_import_decl(&mut self, n: &ImportDecl)
fn visit_import_decl(&mut self, n: &ImportDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_import_default_specifier(&mut self, n: &ImportDefaultSpecifier)
fn visit_import_default_specifier(&mut self, n: &ImportDefaultSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_import_named_specifier(&mut self, n: &ImportNamedSpecifier)
fn visit_import_named_specifier(&mut self, n: &ImportNamedSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_import_specifier(&mut self, n: &ImportSpecifier)
fn visit_import_specifier(&mut self, n: &ImportSpecifier)
This method can be overriden to customize the visitor behavior. Read more
fn visit_import_specifiers(&mut self, n: &[ImportSpecifier])
source§fn visit_import_star_as_specifier(&mut self, n: &ImportStarAsSpecifier)
fn visit_import_star_as_specifier(&mut self, n: &ImportStarAsSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_invalid(&mut self, n: &Invalid)
fn visit_invalid(&mut self, n: &Invalid)
This method can be overriden to customize the visitor behavior. Read more
fn visit_js_word(&mut self, n: &Atom<JsWordStaticSet>)
source§fn visit_jsx_attr(&mut self, n: &JSXAttr)
fn visit_jsx_attr(&mut self, n: &JSXAttr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_attr_name(&mut self, n: &JSXAttrName)
fn visit_jsx_attr_name(&mut self, n: &JSXAttrName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_attr_or_spread(&mut self, n: &JSXAttrOrSpread)
fn visit_jsx_attr_or_spread(&mut self, n: &JSXAttrOrSpread)
This method can be overriden to customize the visitor behavior. Read more
fn visit_jsx_attr_or_spreads(&mut self, n: &[JSXAttrOrSpread])
source§fn visit_jsx_attr_value(&mut self, n: &JSXAttrValue)
fn visit_jsx_attr_value(&mut self, n: &JSXAttrValue)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_closing_element(&mut self, n: &JSXClosingElement)
fn visit_jsx_closing_element(&mut self, n: &JSXClosingElement)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_closing_fragment(&mut self, n: &JSXClosingFragment)
fn visit_jsx_closing_fragment(&mut self, n: &JSXClosingFragment)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_element(&mut self, n: &JSXElement)
fn visit_jsx_element(&mut self, n: &JSXElement)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_element_child(&mut self, n: &JSXElementChild)
fn visit_jsx_element_child(&mut self, n: &JSXElementChild)
This method can be overriden to customize the visitor behavior. Read more
fn visit_jsx_element_children(&mut self, n: &[JSXElementChild])
source§fn visit_jsx_element_name(&mut self, n: &JSXElementName)
fn visit_jsx_element_name(&mut self, n: &JSXElementName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_empty_expr(&mut self, n: &JSXEmptyExpr)
fn visit_jsx_empty_expr(&mut self, n: &JSXEmptyExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_expr(&mut self, n: &JSXExpr)
fn visit_jsx_expr(&mut self, n: &JSXExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_expr_container(&mut self, n: &JSXExprContainer)
fn visit_jsx_expr_container(&mut self, n: &JSXExprContainer)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_fragment(&mut self, n: &JSXFragment)
fn visit_jsx_fragment(&mut self, n: &JSXFragment)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_member_expr(&mut self, n: &JSXMemberExpr)
fn visit_jsx_member_expr(&mut self, n: &JSXMemberExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_namespaced_name(&mut self, n: &JSXNamespacedName)
fn visit_jsx_namespaced_name(&mut self, n: &JSXNamespacedName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_object(&mut self, n: &JSXObject)
fn visit_jsx_object(&mut self, n: &JSXObject)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_opening_element(&mut self, n: &JSXOpeningElement)
fn visit_jsx_opening_element(&mut self, n: &JSXOpeningElement)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_opening_fragment(&mut self, n: &JSXOpeningFragment)
fn visit_jsx_opening_fragment(&mut self, n: &JSXOpeningFragment)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_spread_child(&mut self, n: &JSXSpreadChild)
fn visit_jsx_spread_child(&mut self, n: &JSXSpreadChild)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_jsx_text(&mut self, n: &JSXText)
fn visit_jsx_text(&mut self, n: &JSXText)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_key_value_pat_prop(&mut self, n: &KeyValuePatProp)
fn visit_key_value_pat_prop(&mut self, n: &KeyValuePatProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_key_value_prop(&mut self, n: &KeyValueProp)
fn visit_key_value_prop(&mut self, n: &KeyValueProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_labeled_stmt(&mut self, n: &LabeledStmt)
fn visit_labeled_stmt(&mut self, n: &LabeledStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_lit(&mut self, n: &Lit)
fn visit_lit(&mut self, n: &Lit)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_member_expr(&mut self, n: &MemberExpr)
fn visit_member_expr(&mut self, n: &MemberExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_member_prop(&mut self, n: &MemberProp)
fn visit_member_prop(&mut self, n: &MemberProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_meta_prop_expr(&mut self, n: &MetaPropExpr)
fn visit_meta_prop_expr(&mut self, n: &MetaPropExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_meta_prop_kind(&mut self, n: &MetaPropKind)
fn visit_meta_prop_kind(&mut self, n: &MetaPropKind)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_method_kind(&mut self, n: &MethodKind)
fn visit_method_kind(&mut self, n: &MethodKind)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_method_prop(&mut self, n: &MethodProp)
fn visit_method_prop(&mut self, n: &MethodProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_module(&mut self, n: &Module)
fn visit_module(&mut self, n: &Module)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_module_decl(&mut self, n: &ModuleDecl)
fn visit_module_decl(&mut self, n: &ModuleDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_module_export_name(&mut self, n: &ModuleExportName)
fn visit_module_export_name(&mut self, n: &ModuleExportName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_module_item(&mut self, n: &ModuleItem)
fn visit_module_item(&mut self, n: &ModuleItem)
This method can be overriden to customize the visitor behavior. Read more
fn visit_module_items(&mut self, n: &[ModuleItem])
source§fn visit_named_export(&mut self, n: &NamedExport)
fn visit_named_export(&mut self, n: &NamedExport)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_new_expr(&mut self, n: &NewExpr)
fn visit_new_expr(&mut self, n: &NewExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_null(&mut self, n: &Null)
fn visit_null(&mut self, n: &Null)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_number(&mut self, n: &Number)
fn visit_number(&mut self, n: &Number)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_object_lit(&mut self, n: &ObjectLit)
fn visit_object_lit(&mut self, n: &ObjectLit)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_object_pat(&mut self, n: &ObjectPat)
fn visit_object_pat(&mut self, n: &ObjectPat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_object_pat_prop(&mut self, n: &ObjectPatProp)
fn visit_object_pat_prop(&mut self, n: &ObjectPatProp)
This method can be overriden to customize the visitor behavior. Read more
fn visit_object_pat_props(&mut self, n: &[ObjectPatProp])
fn visit_opt_accessibility(&mut self, n: Option<&Accessibility>)
fn visit_opt_atom(&mut self, n: Option<&Atom>)
fn visit_opt_block_stmt(&mut self, n: Option<&BlockStmt>)
source§fn visit_opt_call(&mut self, n: &OptCall)
fn visit_opt_call(&mut self, n: &OptCall)
This method can be overriden to customize the visitor behavior. Read more
fn visit_opt_catch_clause(&mut self, n: Option<&CatchClause>)
source§fn visit_opt_chain_base(&mut self, n: &OptChainBase)
fn visit_opt_chain_base(&mut self, n: &OptChainBase)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_opt_chain_expr(&mut self, n: &OptChainExpr)
fn visit_opt_chain_expr(&mut self, n: &OptChainExpr)
This method can be overriden to customize the visitor behavior. Read more
fn visit_opt_expr(&mut self, n: Option<&Box<Expr>>)
fn visit_opt_expr_or_spread(&mut self, n: Option<&ExprOrSpread>)
fn visit_opt_expr_or_spreads(&mut self, n: Option<&[ExprOrSpread]>)
fn visit_opt_ident(&mut self, n: Option<&Ident>)
fn visit_opt_jsx_attr_value(&mut self, n: Option<&JSXAttrValue>)
fn visit_opt_jsx_closing_element(&mut self, n: Option<&JSXClosingElement>)
fn visit_opt_module_export_name(&mut self, n: Option<&ModuleExportName>)
fn visit_opt_module_items(&mut self, n: Option<&[ModuleItem]>)
fn visit_opt_object_lit(&mut self, n: Option<&Box<ObjectLit>>)
fn visit_opt_pat(&mut self, n: Option<&Pat>)
fn visit_opt_span(&mut self, n: Option<&Span>)
fn visit_opt_stmt(&mut self, n: Option<&Box<Stmt>>)
fn visit_opt_str(&mut self, n: Option<&Box<Str>>)
fn visit_opt_true_plus_minus(&mut self, n: Option<&TruePlusMinus>)
fn visit_opt_ts_entity_name(&mut self, n: Option<&TsEntityName>)
fn visit_opt_ts_namespace_body(&mut self, n: Option<&TsNamespaceBody>)
fn visit_opt_ts_type(&mut self, n: Option<&Box<TsType>>)
fn visit_opt_ts_type_ann(&mut self, n: Option<&Box<TsTypeAnn>>)
fn visit_opt_ts_type_param_decl(&mut self, n: Option<&Box<TsTypeParamDecl>>)
fn visit_opt_ts_type_param_instantiation( &mut self, n: Option<&Box<TsTypeParamInstantiation>>, )
fn visit_opt_var_decl_or_expr(&mut self, n: Option<&VarDeclOrExpr>)
fn visit_opt_vec_expr_or_spreads(&mut self, n: &[Option<ExprOrSpread>])
fn visit_opt_vec_pats(&mut self, n: &[Option<Pat>])
source§fn visit_param(&mut self, n: &Param)
fn visit_param(&mut self, n: &Param)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_param_or_ts_param_prop(&mut self, n: &ParamOrTsParamProp)
fn visit_param_or_ts_param_prop(&mut self, n: &ParamOrTsParamProp)
This method can be overriden to customize the visitor behavior. Read more
fn visit_param_or_ts_param_props(&mut self, n: &[ParamOrTsParamProp])
fn visit_params(&mut self, n: &[Param])
source§fn visit_paren_expr(&mut self, n: &ParenExpr)
fn visit_paren_expr(&mut self, n: &ParenExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_pat(&mut self, n: &Pat)
fn visit_pat(&mut self, n: &Pat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_pat_or_expr(&mut self, n: &PatOrExpr)
fn visit_pat_or_expr(&mut self, n: &PatOrExpr)
This method can be overriden to customize the visitor behavior. Read more
fn visit_pats(&mut self, n: &[Pat])
source§fn visit_private_method(&mut self, n: &PrivateMethod)
fn visit_private_method(&mut self, n: &PrivateMethod)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_private_name(&mut self, n: &PrivateName)
fn visit_private_name(&mut self, n: &PrivateName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_private_prop(&mut self, n: &PrivateProp)
fn visit_private_prop(&mut self, n: &PrivateProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_program(&mut self, n: &Program)
fn visit_program(&mut self, n: &Program)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_prop(&mut self, n: &Prop)
fn visit_prop(&mut self, n: &Prop)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_prop_name(&mut self, n: &PropName)
fn visit_prop_name(&mut self, n: &PropName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_prop_or_spread(&mut self, n: &PropOrSpread)
fn visit_prop_or_spread(&mut self, n: &PropOrSpread)
This method can be overriden to customize the visitor behavior. Read more
fn visit_prop_or_spreads(&mut self, n: &[PropOrSpread])
source§fn visit_regex(&mut self, n: &Regex)
fn visit_regex(&mut self, n: &Regex)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_reserved_unused(&mut self, n: &ReservedUnused)
fn visit_reserved_unused(&mut self, n: &ReservedUnused)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_rest_pat(&mut self, n: &RestPat)
fn visit_rest_pat(&mut self, n: &RestPat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_return_stmt(&mut self, n: &ReturnStmt)
fn visit_return_stmt(&mut self, n: &ReturnStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_script(&mut self, n: &Script)
fn visit_script(&mut self, n: &Script)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_seq_expr(&mut self, n: &SeqExpr)
fn visit_seq_expr(&mut self, n: &SeqExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_setter_prop(&mut self, n: &SetterProp)
fn visit_setter_prop(&mut self, n: &SetterProp)
This method can be overriden to customize the visitor behavior. Read more
fn visit_span(&mut self, n: &Span)
source§fn visit_spread_element(&mut self, n: &SpreadElement)
fn visit_spread_element(&mut self, n: &SpreadElement)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_static_block(&mut self, n: &StaticBlock)
fn visit_static_block(&mut self, n: &StaticBlock)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_stmt(&mut self, n: &Stmt)
fn visit_stmt(&mut self, n: &Stmt)
This method can be overriden to customize the visitor behavior. Read more
fn visit_stmts(&mut self, n: &[Stmt])
source§fn visit_str(&mut self, n: &Str)
fn visit_str(&mut self, n: &Str)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_super(&mut self, n: &Super)
fn visit_super(&mut self, n: &Super)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_super_prop(&mut self, n: &SuperProp)
fn visit_super_prop(&mut self, n: &SuperProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_super_prop_expr(&mut self, n: &SuperPropExpr)
fn visit_super_prop_expr(&mut self, n: &SuperPropExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_switch_case(&mut self, n: &SwitchCase)
fn visit_switch_case(&mut self, n: &SwitchCase)
This method can be overriden to customize the visitor behavior. Read more
fn visit_switch_cases(&mut self, n: &[SwitchCase])
source§fn visit_switch_stmt(&mut self, n: &SwitchStmt)
fn visit_switch_stmt(&mut self, n: &SwitchStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_tagged_tpl(&mut self, n: &TaggedTpl)
fn visit_tagged_tpl(&mut self, n: &TaggedTpl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_this_expr(&mut self, n: &ThisExpr)
fn visit_this_expr(&mut self, n: &ThisExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_throw_stmt(&mut self, n: &ThrowStmt)
fn visit_throw_stmt(&mut self, n: &ThrowStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_tpl(&mut self, n: &Tpl)
fn visit_tpl(&mut self, n: &Tpl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_tpl_element(&mut self, n: &TplElement)
fn visit_tpl_element(&mut self, n: &TplElement)
This method can be overriden to customize the visitor behavior. Read more
fn visit_tpl_elements(&mut self, n: &[TplElement])
source§fn visit_true_plus_minus(&mut self, n: &TruePlusMinus)
fn visit_true_plus_minus(&mut self, n: &TruePlusMinus)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_try_stmt(&mut self, n: &TryStmt)
fn visit_try_stmt(&mut self, n: &TryStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_array_type(&mut self, n: &TsArrayType)
fn visit_ts_array_type(&mut self, n: &TsArrayType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_as_expr(&mut self, n: &TsAsExpr)
fn visit_ts_as_expr(&mut self, n: &TsAsExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_call_signature_decl(&mut self, n: &TsCallSignatureDecl)
fn visit_ts_call_signature_decl(&mut self, n: &TsCallSignatureDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_conditional_type(&mut self, n: &TsConditionalType)
fn visit_ts_conditional_type(&mut self, n: &TsConditionalType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_const_assertion(&mut self, n: &TsConstAssertion)
fn visit_ts_const_assertion(&mut self, n: &TsConstAssertion)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_construct_signature_decl(&mut self, n: &TsConstructSignatureDecl)
fn visit_ts_construct_signature_decl(&mut self, n: &TsConstructSignatureDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_constructor_type(&mut self, n: &TsConstructorType)
fn visit_ts_constructor_type(&mut self, n: &TsConstructorType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_entity_name(&mut self, n: &TsEntityName)
fn visit_ts_entity_name(&mut self, n: &TsEntityName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_enum_decl(&mut self, n: &TsEnumDecl)
fn visit_ts_enum_decl(&mut self, n: &TsEnumDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_enum_member(&mut self, n: &TsEnumMember)
fn visit_ts_enum_member(&mut self, n: &TsEnumMember)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_enum_member_id(&mut self, n: &TsEnumMemberId)
fn visit_ts_enum_member_id(&mut self, n: &TsEnumMemberId)
This method can be overriden to customize the visitor behavior. Read more
fn visit_ts_enum_members(&mut self, n: &[TsEnumMember])
source§fn visit_ts_export_assignment(&mut self, n: &TsExportAssignment)
fn visit_ts_export_assignment(&mut self, n: &TsExportAssignment)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_expr_with_type_args(&mut self, n: &TsExprWithTypeArgs)
fn visit_ts_expr_with_type_args(&mut self, n: &TsExprWithTypeArgs)
This method can be overriden to customize the visitor behavior. Read more
fn visit_ts_expr_with_type_args_vec(&mut self, n: &[TsExprWithTypeArgs])
source§fn visit_ts_external_module_ref(&mut self, n: &TsExternalModuleRef)
fn visit_ts_external_module_ref(&mut self, n: &TsExternalModuleRef)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_fn_or_constructor_type(&mut self, n: &TsFnOrConstructorType)
fn visit_ts_fn_or_constructor_type(&mut self, n: &TsFnOrConstructorType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_fn_param(&mut self, n: &TsFnParam)
fn visit_ts_fn_param(&mut self, n: &TsFnParam)
This method can be overriden to customize the visitor behavior. Read more
fn visit_ts_fn_params(&mut self, n: &[TsFnParam])
source§fn visit_ts_fn_type(&mut self, n: &TsFnType)
fn visit_ts_fn_type(&mut self, n: &TsFnType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_getter_signature(&mut self, n: &TsGetterSignature)
fn visit_ts_getter_signature(&mut self, n: &TsGetterSignature)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_import_equals_decl(&mut self, n: &TsImportEqualsDecl)
fn visit_ts_import_equals_decl(&mut self, n: &TsImportEqualsDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_import_type(&mut self, n: &TsImportType)
fn visit_ts_import_type(&mut self, n: &TsImportType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_index_signature(&mut self, n: &TsIndexSignature)
fn visit_ts_index_signature(&mut self, n: &TsIndexSignature)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_indexed_access_type(&mut self, n: &TsIndexedAccessType)
fn visit_ts_indexed_access_type(&mut self, n: &TsIndexedAccessType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_infer_type(&mut self, n: &TsInferType)
fn visit_ts_infer_type(&mut self, n: &TsInferType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_instantiation(&mut self, n: &TsInstantiation)
fn visit_ts_instantiation(&mut self, n: &TsInstantiation)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_interface_body(&mut self, n: &TsInterfaceBody)
fn visit_ts_interface_body(&mut self, n: &TsInterfaceBody)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_interface_decl(&mut self, n: &TsInterfaceDecl)
fn visit_ts_interface_decl(&mut self, n: &TsInterfaceDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_intersection_type(&mut self, n: &TsIntersectionType)
fn visit_ts_intersection_type(&mut self, n: &TsIntersectionType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_keyword_type(&mut self, n: &TsKeywordType)
fn visit_ts_keyword_type(&mut self, n: &TsKeywordType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_keyword_type_kind(&mut self, n: &TsKeywordTypeKind)
fn visit_ts_keyword_type_kind(&mut self, n: &TsKeywordTypeKind)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_lit(&mut self, n: &TsLit)
fn visit_ts_lit(&mut self, n: &TsLit)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_lit_type(&mut self, n: &TsLitType)
fn visit_ts_lit_type(&mut self, n: &TsLitType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_mapped_type(&mut self, n: &TsMappedType)
fn visit_ts_mapped_type(&mut self, n: &TsMappedType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_method_signature(&mut self, n: &TsMethodSignature)
fn visit_ts_method_signature(&mut self, n: &TsMethodSignature)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_module_block(&mut self, n: &TsModuleBlock)
fn visit_ts_module_block(&mut self, n: &TsModuleBlock)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_module_decl(&mut self, n: &TsModuleDecl)
fn visit_ts_module_decl(&mut self, n: &TsModuleDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_module_name(&mut self, n: &TsModuleName)
fn visit_ts_module_name(&mut self, n: &TsModuleName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_module_ref(&mut self, n: &TsModuleRef)
fn visit_ts_module_ref(&mut self, n: &TsModuleRef)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_namespace_body(&mut self, n: &TsNamespaceBody)
fn visit_ts_namespace_body(&mut self, n: &TsNamespaceBody)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_namespace_decl(&mut self, n: &TsNamespaceDecl)
fn visit_ts_namespace_decl(&mut self, n: &TsNamespaceDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_namespace_export_decl(&mut self, n: &TsNamespaceExportDecl)
fn visit_ts_namespace_export_decl(&mut self, n: &TsNamespaceExportDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_non_null_expr(&mut self, n: &TsNonNullExpr)
fn visit_ts_non_null_expr(&mut self, n: &TsNonNullExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_optional_type(&mut self, n: &TsOptionalType)
fn visit_ts_optional_type(&mut self, n: &TsOptionalType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_param_prop(&mut self, n: &TsParamProp)
fn visit_ts_param_prop(&mut self, n: &TsParamProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_param_prop_param(&mut self, n: &TsParamPropParam)
fn visit_ts_param_prop_param(&mut self, n: &TsParamPropParam)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_parenthesized_type(&mut self, n: &TsParenthesizedType)
fn visit_ts_parenthesized_type(&mut self, n: &TsParenthesizedType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_property_signature(&mut self, n: &TsPropertySignature)
fn visit_ts_property_signature(&mut self, n: &TsPropertySignature)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_qualified_name(&mut self, n: &TsQualifiedName)
fn visit_ts_qualified_name(&mut self, n: &TsQualifiedName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_rest_type(&mut self, n: &TsRestType)
fn visit_ts_rest_type(&mut self, n: &TsRestType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_satisfies_expr(&mut self, n: &TsSatisfiesExpr)
fn visit_ts_satisfies_expr(&mut self, n: &TsSatisfiesExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_setter_signature(&mut self, n: &TsSetterSignature)
fn visit_ts_setter_signature(&mut self, n: &TsSetterSignature)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_this_type(&mut self, n: &TsThisType)
fn visit_ts_this_type(&mut self, n: &TsThisType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_this_type_or_ident(&mut self, n: &TsThisTypeOrIdent)
fn visit_ts_this_type_or_ident(&mut self, n: &TsThisTypeOrIdent)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_tpl_lit_type(&mut self, n: &TsTplLitType)
fn visit_ts_tpl_lit_type(&mut self, n: &TsTplLitType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_tuple_element(&mut self, n: &TsTupleElement)
fn visit_ts_tuple_element(&mut self, n: &TsTupleElement)
This method can be overriden to customize the visitor behavior. Read more
fn visit_ts_tuple_elements(&mut self, n: &[TsTupleElement])
source§fn visit_ts_tuple_type(&mut self, n: &TsTupleType)
fn visit_ts_tuple_type(&mut self, n: &TsTupleType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type(&mut self, n: &TsType)
fn visit_ts_type(&mut self, n: &TsType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_alias_decl(&mut self, n: &TsTypeAliasDecl)
fn visit_ts_type_alias_decl(&mut self, n: &TsTypeAliasDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_ann(&mut self, n: &TsTypeAnn)
fn visit_ts_type_ann(&mut self, n: &TsTypeAnn)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_assertion(&mut self, n: &TsTypeAssertion)
fn visit_ts_type_assertion(&mut self, n: &TsTypeAssertion)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_element(&mut self, n: &TsTypeElement)
fn visit_ts_type_element(&mut self, n: &TsTypeElement)
This method can be overriden to customize the visitor behavior. Read more
fn visit_ts_type_elements(&mut self, n: &[TsTypeElement])
source§fn visit_ts_type_lit(&mut self, n: &TsTypeLit)
fn visit_ts_type_lit(&mut self, n: &TsTypeLit)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_operator(&mut self, n: &TsTypeOperator)
fn visit_ts_type_operator(&mut self, n: &TsTypeOperator)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_operator_op(&mut self, n: &TsTypeOperatorOp)
fn visit_ts_type_operator_op(&mut self, n: &TsTypeOperatorOp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_param(&mut self, n: &TsTypeParam)
fn visit_ts_type_param(&mut self, n: &TsTypeParam)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_param_decl(&mut self, n: &TsTypeParamDecl)
fn visit_ts_type_param_decl(&mut self, n: &TsTypeParamDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_param_instantiation(&mut self, n: &TsTypeParamInstantiation)
fn visit_ts_type_param_instantiation(&mut self, n: &TsTypeParamInstantiation)
This method can be overriden to customize the visitor behavior. Read more
fn visit_ts_type_params(&mut self, n: &[TsTypeParam])
source§fn visit_ts_type_predicate(&mut self, n: &TsTypePredicate)
fn visit_ts_type_predicate(&mut self, n: &TsTypePredicate)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_query(&mut self, n: &TsTypeQuery)
fn visit_ts_type_query(&mut self, n: &TsTypeQuery)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_query_expr(&mut self, n: &TsTypeQueryExpr)
fn visit_ts_type_query_expr(&mut self, n: &TsTypeQueryExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_type_ref(&mut self, n: &TsTypeRef)
fn visit_ts_type_ref(&mut self, n: &TsTypeRef)
This method can be overriden to customize the visitor behavior. Read more
fn visit_ts_types(&mut self, n: &[Box<TsType>])
source§fn visit_ts_union_or_intersection_type(&mut self, n: &TsUnionOrIntersectionType)
fn visit_ts_union_or_intersection_type(&mut self, n: &TsUnionOrIntersectionType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_ts_union_type(&mut self, n: &TsUnionType)
fn visit_ts_union_type(&mut self, n: &TsUnionType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_unary_expr(&mut self, n: &UnaryExpr)
fn visit_unary_expr(&mut self, n: &UnaryExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_unary_op(&mut self, n: &UnaryOp)
fn visit_unary_op(&mut self, n: &UnaryOp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_update_expr(&mut self, n: &UpdateExpr)
fn visit_update_expr(&mut self, n: &UpdateExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_update_op(&mut self, n: &UpdateOp)
fn visit_update_op(&mut self, n: &UpdateOp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_var_decl(&mut self, n: &VarDecl)
fn visit_var_decl(&mut self, n: &VarDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_var_decl_kind(&mut self, n: &VarDeclKind)
fn visit_var_decl_kind(&mut self, n: &VarDeclKind)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_var_decl_or_expr(&mut self, n: &VarDeclOrExpr)
fn visit_var_decl_or_expr(&mut self, n: &VarDeclOrExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_var_decl_or_pat(&mut self, n: &VarDeclOrPat)
fn visit_var_decl_or_pat(&mut self, n: &VarDeclOrPat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_var_declarator(&mut self, n: &VarDeclarator)
fn visit_var_declarator(&mut self, n: &VarDeclarator)
This method can be overriden to customize the visitor behavior. Read more
fn visit_var_declarators(&mut self, n: &[VarDeclarator])
source§fn visit_while_stmt(&mut self, n: &WhileStmt)
fn visit_while_stmt(&mut self, n: &WhileStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_with_stmt(&mut self, n: &WithStmt)
fn visit_with_stmt(&mut self, n: &WithStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_yield_expr(&mut self, n: &YieldExpr)
fn visit_yield_expr(&mut self, n: &YieldExpr)
This method can be overriden to customize the visitor behavior. Read more
source§impl<V> VisitAll for Optional<V>where
V: VisitAll,
impl<V> VisitAll for Optional<V>where
V: VisitAll,
source§fn visit_accessibility(&mut self, n: &Accessibility)
fn visit_accessibility(&mut self, n: &Accessibility)
This method can be overriden to customize the visitor behavior.
source§fn visit_array_lit(&mut self, n: &ArrayLit)
fn visit_array_lit(&mut self, n: &ArrayLit)
This method can be overriden to customize the visitor behavior.
source§fn visit_array_pat(&mut self, n: &ArrayPat)
fn visit_array_pat(&mut self, n: &ArrayPat)
This method can be overriden to customize the visitor behavior.
source§fn visit_arrow_expr(&mut self, n: &ArrowExpr)
fn visit_arrow_expr(&mut self, n: &ArrowExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_assign_expr(&mut self, n: &AssignExpr)
fn visit_assign_expr(&mut self, n: &AssignExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_assign_op(&mut self, n: &AssignOp)
fn visit_assign_op(&mut self, n: &AssignOp)
This method can be overriden to customize the visitor behavior.
source§fn visit_assign_pat(&mut self, n: &AssignPat)
fn visit_assign_pat(&mut self, n: &AssignPat)
This method can be overriden to customize the visitor behavior.
source§fn visit_assign_pat_prop(&mut self, n: &AssignPatProp)
fn visit_assign_pat_prop(&mut self, n: &AssignPatProp)
This method can be overriden to customize the visitor behavior.
source§fn visit_assign_prop(&mut self, n: &AssignProp)
fn visit_assign_prop(&mut self, n: &AssignProp)
This method can be overriden to customize the visitor behavior.
fn visit_atom(&mut self, n: &Atom)
source§fn visit_await_expr(&mut self, n: &AwaitExpr)
fn visit_await_expr(&mut self, n: &AwaitExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_big_int(&mut self, n: &BigInt)
fn visit_big_int(&mut self, n: &BigInt)
This method can be overriden to customize the visitor behavior.
fn visit_big_int_value(&mut self, n: &BigInt)
source§fn visit_bin_expr(&mut self, n: &BinExpr)
fn visit_bin_expr(&mut self, n: &BinExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_binary_op(&mut self, n: &BinaryOp)
fn visit_binary_op(&mut self, n: &BinaryOp)
This method can be overriden to customize the visitor behavior.
source§fn visit_binding_ident(&mut self, n: &BindingIdent)
fn visit_binding_ident(&mut self, n: &BindingIdent)
This method can be overriden to customize the visitor behavior.
source§fn visit_block_stmt(&mut self, n: &BlockStmt)
fn visit_block_stmt(&mut self, n: &BlockStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_block_stmt_or_expr(&mut self, n: &BlockStmtOrExpr)
fn visit_block_stmt_or_expr(&mut self, n: &BlockStmtOrExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_bool(&mut self, n: &Bool)
fn visit_bool(&mut self, n: &Bool)
This method can be overriden to customize the visitor behavior.
source§fn visit_break_stmt(&mut self, n: &BreakStmt)
fn visit_break_stmt(&mut self, n: &BreakStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_call_expr(&mut self, n: &CallExpr)
fn visit_call_expr(&mut self, n: &CallExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_callee(&mut self, n: &Callee)
fn visit_callee(&mut self, n: &Callee)
This method can be overriden to customize the visitor behavior.
source§fn visit_catch_clause(&mut self, n: &CatchClause)
fn visit_catch_clause(&mut self, n: &CatchClause)
This method can be overriden to customize the visitor behavior.
source§fn visit_class(&mut self, n: &Class)
fn visit_class(&mut self, n: &Class)
This method can be overriden to customize the visitor behavior.
source§fn visit_class_decl(&mut self, n: &ClassDecl)
fn visit_class_decl(&mut self, n: &ClassDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_class_expr(&mut self, n: &ClassExpr)
fn visit_class_expr(&mut self, n: &ClassExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_class_member(&mut self, n: &ClassMember)
fn visit_class_member(&mut self, n: &ClassMember)
This method can be overriden to customize the visitor behavior.
fn visit_class_members(&mut self, n: &[ClassMember])
source§fn visit_class_method(&mut self, n: &ClassMethod)
fn visit_class_method(&mut self, n: &ClassMethod)
This method can be overriden to customize the visitor behavior.
source§fn visit_class_prop(&mut self, n: &ClassProp)
fn visit_class_prop(&mut self, n: &ClassProp)
This method can be overriden to customize the visitor behavior.
source§fn visit_computed_prop_name(&mut self, n: &ComputedPropName)
fn visit_computed_prop_name(&mut self, n: &ComputedPropName)
This method can be overriden to customize the visitor behavior.
source§fn visit_cond_expr(&mut self, n: &CondExpr)
fn visit_cond_expr(&mut self, n: &CondExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_constructor(&mut self, n: &Constructor)
fn visit_constructor(&mut self, n: &Constructor)
This method can be overriden to customize the visitor behavior.
source§fn visit_continue_stmt(&mut self, n: &ContinueStmt)
fn visit_continue_stmt(&mut self, n: &ContinueStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_debugger_stmt(&mut self, n: &DebuggerStmt)
fn visit_debugger_stmt(&mut self, n: &DebuggerStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_decl(&mut self, n: &Decl)
fn visit_decl(&mut self, n: &Decl)
This method can be overriden to customize the visitor behavior.
source§fn visit_decorator(&mut self, n: &Decorator)
fn visit_decorator(&mut self, n: &Decorator)
This method can be overriden to customize the visitor behavior.
fn visit_decorators(&mut self, n: &[Decorator])
source§fn visit_default_decl(&mut self, n: &DefaultDecl)
fn visit_default_decl(&mut self, n: &DefaultDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_do_while_stmt(&mut self, n: &DoWhileStmt)
fn visit_do_while_stmt(&mut self, n: &DoWhileStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_empty_stmt(&mut self, n: &EmptyStmt)
fn visit_empty_stmt(&mut self, n: &EmptyStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_export_all(&mut self, n: &ExportAll)
fn visit_export_all(&mut self, n: &ExportAll)
This method can be overriden to customize the visitor behavior.
source§fn visit_export_decl(&mut self, n: &ExportDecl)
fn visit_export_decl(&mut self, n: &ExportDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_export_default_decl(&mut self, n: &ExportDefaultDecl)
fn visit_export_default_decl(&mut self, n: &ExportDefaultDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_export_default_expr(&mut self, n: &ExportDefaultExpr)
fn visit_export_default_expr(&mut self, n: &ExportDefaultExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_export_default_specifier(&mut self, n: &ExportDefaultSpecifier)
fn visit_export_default_specifier(&mut self, n: &ExportDefaultSpecifier)
This method can be overriden to customize the visitor behavior.
source§fn visit_export_named_specifier(&mut self, n: &ExportNamedSpecifier)
fn visit_export_named_specifier(&mut self, n: &ExportNamedSpecifier)
This method can be overriden to customize the visitor behavior.
source§fn visit_export_namespace_specifier(&mut self, n: &ExportNamespaceSpecifier)
fn visit_export_namespace_specifier(&mut self, n: &ExportNamespaceSpecifier)
This method can be overriden to customize the visitor behavior.
source§fn visit_export_specifier(&mut self, n: &ExportSpecifier)
fn visit_export_specifier(&mut self, n: &ExportSpecifier)
This method can be overriden to customize the visitor behavior.
fn visit_export_specifiers(&mut self, n: &[ExportSpecifier])
source§fn visit_expr(&mut self, n: &Expr)
fn visit_expr(&mut self, n: &Expr)
This method can be overriden to customize the visitor behavior.
source§fn visit_expr_or_spread(&mut self, n: &ExprOrSpread)
fn visit_expr_or_spread(&mut self, n: &ExprOrSpread)
This method can be overriden to customize the visitor behavior.
fn visit_expr_or_spreads(&mut self, n: &[ExprOrSpread])
source§fn visit_expr_stmt(&mut self, n: &ExprStmt)
fn visit_expr_stmt(&mut self, n: &ExprStmt)
This method can be overriden to customize the visitor behavior.
fn visit_exprs(&mut self, n: &[Box<Expr>])
source§fn visit_fn_decl(&mut self, n: &FnDecl)
fn visit_fn_decl(&mut self, n: &FnDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_fn_expr(&mut self, n: &FnExpr)
fn visit_fn_expr(&mut self, n: &FnExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_for_in_stmt(&mut self, n: &ForInStmt)
fn visit_for_in_stmt(&mut self, n: &ForInStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_for_of_stmt(&mut self, n: &ForOfStmt)
fn visit_for_of_stmt(&mut self, n: &ForOfStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_for_stmt(&mut self, n: &ForStmt)
fn visit_for_stmt(&mut self, n: &ForStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_function(&mut self, n: &Function)
fn visit_function(&mut self, n: &Function)
This method can be overriden to customize the visitor behavior.
source§fn visit_getter_prop(&mut self, n: &GetterProp)
fn visit_getter_prop(&mut self, n: &GetterProp)
This method can be overriden to customize the visitor behavior.
source§fn visit_ident(&mut self, n: &Ident)
fn visit_ident(&mut self, n: &Ident)
This method can be overriden to customize the visitor behavior.
source§fn visit_if_stmt(&mut self, n: &IfStmt)
fn visit_if_stmt(&mut self, n: &IfStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_import(&mut self, n: &Import)
fn visit_import(&mut self, n: &Import)
This method can be overriden to customize the visitor behavior.
source§fn visit_import_decl(&mut self, n: &ImportDecl)
fn visit_import_decl(&mut self, n: &ImportDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_import_default_specifier(&mut self, n: &ImportDefaultSpecifier)
fn visit_import_default_specifier(&mut self, n: &ImportDefaultSpecifier)
This method can be overriden to customize the visitor behavior.
source§fn visit_import_named_specifier(&mut self, n: &ImportNamedSpecifier)
fn visit_import_named_specifier(&mut self, n: &ImportNamedSpecifier)
This method can be overriden to customize the visitor behavior.
source§fn visit_import_specifier(&mut self, n: &ImportSpecifier)
fn visit_import_specifier(&mut self, n: &ImportSpecifier)
This method can be overriden to customize the visitor behavior.
fn visit_import_specifiers(&mut self, n: &[ImportSpecifier])
source§fn visit_import_star_as_specifier(&mut self, n: &ImportStarAsSpecifier)
fn visit_import_star_as_specifier(&mut self, n: &ImportStarAsSpecifier)
This method can be overriden to customize the visitor behavior.
source§fn visit_invalid(&mut self, n: &Invalid)
fn visit_invalid(&mut self, n: &Invalid)
This method can be overriden to customize the visitor behavior.
fn visit_js_word(&mut self, n: &Atom<JsWordStaticSet>)
source§fn visit_jsx_attr(&mut self, n: &JSXAttr)
fn visit_jsx_attr(&mut self, n: &JSXAttr)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_attr_name(&mut self, n: &JSXAttrName)
fn visit_jsx_attr_name(&mut self, n: &JSXAttrName)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_attr_or_spread(&mut self, n: &JSXAttrOrSpread)
fn visit_jsx_attr_or_spread(&mut self, n: &JSXAttrOrSpread)
This method can be overriden to customize the visitor behavior.
fn visit_jsx_attr_or_spreads(&mut self, n: &[JSXAttrOrSpread])
source§fn visit_jsx_attr_value(&mut self, n: &JSXAttrValue)
fn visit_jsx_attr_value(&mut self, n: &JSXAttrValue)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_closing_element(&mut self, n: &JSXClosingElement)
fn visit_jsx_closing_element(&mut self, n: &JSXClosingElement)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_closing_fragment(&mut self, n: &JSXClosingFragment)
fn visit_jsx_closing_fragment(&mut self, n: &JSXClosingFragment)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_element(&mut self, n: &JSXElement)
fn visit_jsx_element(&mut self, n: &JSXElement)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_element_child(&mut self, n: &JSXElementChild)
fn visit_jsx_element_child(&mut self, n: &JSXElementChild)
This method can be overriden to customize the visitor behavior.
fn visit_jsx_element_children(&mut self, n: &[JSXElementChild])
source§fn visit_jsx_element_name(&mut self, n: &JSXElementName)
fn visit_jsx_element_name(&mut self, n: &JSXElementName)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_empty_expr(&mut self, n: &JSXEmptyExpr)
fn visit_jsx_empty_expr(&mut self, n: &JSXEmptyExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_expr(&mut self, n: &JSXExpr)
fn visit_jsx_expr(&mut self, n: &JSXExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_expr_container(&mut self, n: &JSXExprContainer)
fn visit_jsx_expr_container(&mut self, n: &JSXExprContainer)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_fragment(&mut self, n: &JSXFragment)
fn visit_jsx_fragment(&mut self, n: &JSXFragment)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_member_expr(&mut self, n: &JSXMemberExpr)
fn visit_jsx_member_expr(&mut self, n: &JSXMemberExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_namespaced_name(&mut self, n: &JSXNamespacedName)
fn visit_jsx_namespaced_name(&mut self, n: &JSXNamespacedName)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_object(&mut self, n: &JSXObject)
fn visit_jsx_object(&mut self, n: &JSXObject)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_opening_element(&mut self, n: &JSXOpeningElement)
fn visit_jsx_opening_element(&mut self, n: &JSXOpeningElement)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_opening_fragment(&mut self, n: &JSXOpeningFragment)
fn visit_jsx_opening_fragment(&mut self, n: &JSXOpeningFragment)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_spread_child(&mut self, n: &JSXSpreadChild)
fn visit_jsx_spread_child(&mut self, n: &JSXSpreadChild)
This method can be overriden to customize the visitor behavior.
source§fn visit_jsx_text(&mut self, n: &JSXText)
fn visit_jsx_text(&mut self, n: &JSXText)
This method can be overriden to customize the visitor behavior.
source§fn visit_key_value_pat_prop(&mut self, n: &KeyValuePatProp)
fn visit_key_value_pat_prop(&mut self, n: &KeyValuePatProp)
This method can be overriden to customize the visitor behavior.
source§fn visit_key_value_prop(&mut self, n: &KeyValueProp)
fn visit_key_value_prop(&mut self, n: &KeyValueProp)
This method can be overriden to customize the visitor behavior.
source§fn visit_labeled_stmt(&mut self, n: &LabeledStmt)
fn visit_labeled_stmt(&mut self, n: &LabeledStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_lit(&mut self, n: &Lit)
fn visit_lit(&mut self, n: &Lit)
This method can be overriden to customize the visitor behavior.
source§fn visit_member_expr(&mut self, n: &MemberExpr)
fn visit_member_expr(&mut self, n: &MemberExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_member_prop(&mut self, n: &MemberProp)
fn visit_member_prop(&mut self, n: &MemberProp)
This method can be overriden to customize the visitor behavior.
source§fn visit_meta_prop_expr(&mut self, n: &MetaPropExpr)
fn visit_meta_prop_expr(&mut self, n: &MetaPropExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_meta_prop_kind(&mut self, n: &MetaPropKind)
fn visit_meta_prop_kind(&mut self, n: &MetaPropKind)
This method can be overriden to customize the visitor behavior.
source§fn visit_method_kind(&mut self, n: &MethodKind)
fn visit_method_kind(&mut self, n: &MethodKind)
This method can be overriden to customize the visitor behavior.
source§fn visit_method_prop(&mut self, n: &MethodProp)
fn visit_method_prop(&mut self, n: &MethodProp)
This method can be overriden to customize the visitor behavior.
source§fn visit_module(&mut self, n: &Module)
fn visit_module(&mut self, n: &Module)
This method can be overriden to customize the visitor behavior.
source§fn visit_module_decl(&mut self, n: &ModuleDecl)
fn visit_module_decl(&mut self, n: &ModuleDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_module_export_name(&mut self, n: &ModuleExportName)
fn visit_module_export_name(&mut self, n: &ModuleExportName)
This method can be overriden to customize the visitor behavior.
source§fn visit_module_item(&mut self, n: &ModuleItem)
fn visit_module_item(&mut self, n: &ModuleItem)
This method can be overriden to customize the visitor behavior.
fn visit_module_items(&mut self, n: &[ModuleItem])
source§fn visit_named_export(&mut self, n: &NamedExport)
fn visit_named_export(&mut self, n: &NamedExport)
This method can be overriden to customize the visitor behavior.
source§fn visit_new_expr(&mut self, n: &NewExpr)
fn visit_new_expr(&mut self, n: &NewExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_null(&mut self, n: &Null)
fn visit_null(&mut self, n: &Null)
This method can be overriden to customize the visitor behavior.
source§fn visit_number(&mut self, n: &Number)
fn visit_number(&mut self, n: &Number)
This method can be overriden to customize the visitor behavior.
source§fn visit_object_lit(&mut self, n: &ObjectLit)
fn visit_object_lit(&mut self, n: &ObjectLit)
This method can be overriden to customize the visitor behavior.
source§fn visit_object_pat(&mut self, n: &ObjectPat)
fn visit_object_pat(&mut self, n: &ObjectPat)
This method can be overriden to customize the visitor behavior.
source§fn visit_object_pat_prop(&mut self, n: &ObjectPatProp)
fn visit_object_pat_prop(&mut self, n: &ObjectPatProp)
This method can be overriden to customize the visitor behavior.
fn visit_object_pat_props(&mut self, n: &[ObjectPatProp])
fn visit_opt_accessibility(&mut self, n: Option<&Accessibility>)
fn visit_opt_atom(&mut self, n: Option<&Atom>)
fn visit_opt_block_stmt(&mut self, n: Option<&BlockStmt>)
source§fn visit_opt_call(&mut self, n: &OptCall)
fn visit_opt_call(&mut self, n: &OptCall)
This method can be overriden to customize the visitor behavior.
fn visit_opt_catch_clause(&mut self, n: Option<&CatchClause>)
source§fn visit_opt_chain_base(&mut self, n: &OptChainBase)
fn visit_opt_chain_base(&mut self, n: &OptChainBase)
This method can be overriden to customize the visitor behavior.
source§fn visit_opt_chain_expr(&mut self, n: &OptChainExpr)
fn visit_opt_chain_expr(&mut self, n: &OptChainExpr)
This method can be overriden to customize the visitor behavior.
fn visit_opt_expr(&mut self, n: Option<&Box<Expr>>)
fn visit_opt_expr_or_spread(&mut self, n: Option<&ExprOrSpread>)
fn visit_opt_expr_or_spreads(&mut self, n: Option<&[ExprOrSpread]>)
fn visit_opt_ident(&mut self, n: Option<&Ident>)
fn visit_opt_jsx_attr_value(&mut self, n: Option<&JSXAttrValue>)
fn visit_opt_jsx_closing_element(&mut self, n: Option<&JSXClosingElement>)
fn visit_opt_module_export_name(&mut self, n: Option<&ModuleExportName>)
fn visit_opt_module_items(&mut self, n: Option<&[ModuleItem]>)
fn visit_opt_object_lit(&mut self, n: Option<&Box<ObjectLit>>)
fn visit_opt_pat(&mut self, n: Option<&Pat>)
fn visit_opt_span(&mut self, n: Option<&Span>)
fn visit_opt_stmt(&mut self, n: Option<&Box<Stmt>>)
fn visit_opt_str(&mut self, n: Option<&Box<Str>>)
fn visit_opt_true_plus_minus(&mut self, n: Option<&TruePlusMinus>)
fn visit_opt_ts_entity_name(&mut self, n: Option<&TsEntityName>)
fn visit_opt_ts_namespace_body(&mut self, n: Option<&TsNamespaceBody>)
fn visit_opt_ts_type(&mut self, n: Option<&Box<TsType>>)
fn visit_opt_ts_type_ann(&mut self, n: Option<&Box<TsTypeAnn>>)
fn visit_opt_ts_type_param_decl(&mut self, n: Option<&Box<TsTypeParamDecl>>)
fn visit_opt_ts_type_param_instantiation( &mut self, n: Option<&Box<TsTypeParamInstantiation>>, )
fn visit_opt_var_decl_or_expr(&mut self, n: Option<&VarDeclOrExpr>)
fn visit_opt_vec_expr_or_spreads(&mut self, n: &[Option<ExprOrSpread>])
fn visit_opt_vec_pats(&mut self, n: &[Option<Pat>])
source§fn visit_param(&mut self, n: &Param)
fn visit_param(&mut self, n: &Param)
This method can be overriden to customize the visitor behavior.
source§fn visit_param_or_ts_param_prop(&mut self, n: &ParamOrTsParamProp)
fn visit_param_or_ts_param_prop(&mut self, n: &ParamOrTsParamProp)
This method can be overriden to customize the visitor behavior.
fn visit_param_or_ts_param_props(&mut self, n: &[ParamOrTsParamProp])
fn visit_params(&mut self, n: &[Param])
source§fn visit_paren_expr(&mut self, n: &ParenExpr)
fn visit_paren_expr(&mut self, n: &ParenExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_pat(&mut self, n: &Pat)
fn visit_pat(&mut self, n: &Pat)
This method can be overriden to customize the visitor behavior.
source§fn visit_pat_or_expr(&mut self, n: &PatOrExpr)
fn visit_pat_or_expr(&mut self, n: &PatOrExpr)
This method can be overriden to customize the visitor behavior.
fn visit_pats(&mut self, n: &[Pat])
source§fn visit_private_method(&mut self, n: &PrivateMethod)
fn visit_private_method(&mut self, n: &PrivateMethod)
This method can be overriden to customize the visitor behavior.
source§fn visit_private_name(&mut self, n: &PrivateName)
fn visit_private_name(&mut self, n: &PrivateName)
This method can be overriden to customize the visitor behavior.
source§fn visit_private_prop(&mut self, n: &PrivateProp)
fn visit_private_prop(&mut self, n: &PrivateProp)
This method can be overriden to customize the visitor behavior.
source§fn visit_program(&mut self, n: &Program)
fn visit_program(&mut self, n: &Program)
This method can be overriden to customize the visitor behavior.
source§fn visit_prop(&mut self, n: &Prop)
fn visit_prop(&mut self, n: &Prop)
This method can be overriden to customize the visitor behavior.
source§fn visit_prop_name(&mut self, n: &PropName)
fn visit_prop_name(&mut self, n: &PropName)
This method can be overriden to customize the visitor behavior.
source§fn visit_prop_or_spread(&mut self, n: &PropOrSpread)
fn visit_prop_or_spread(&mut self, n: &PropOrSpread)
This method can be overriden to customize the visitor behavior.
fn visit_prop_or_spreads(&mut self, n: &[PropOrSpread])
source§fn visit_regex(&mut self, n: &Regex)
fn visit_regex(&mut self, n: &Regex)
This method can be overriden to customize the visitor behavior.
source§fn visit_reserved_unused(&mut self, n: &ReservedUnused)
fn visit_reserved_unused(&mut self, n: &ReservedUnused)
This method can be overriden to customize the visitor behavior.
source§fn visit_rest_pat(&mut self, n: &RestPat)
fn visit_rest_pat(&mut self, n: &RestPat)
This method can be overriden to customize the visitor behavior.
source§fn visit_return_stmt(&mut self, n: &ReturnStmt)
fn visit_return_stmt(&mut self, n: &ReturnStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_script(&mut self, n: &Script)
fn visit_script(&mut self, n: &Script)
This method can be overriden to customize the visitor behavior.
source§fn visit_seq_expr(&mut self, n: &SeqExpr)
fn visit_seq_expr(&mut self, n: &SeqExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_setter_prop(&mut self, n: &SetterProp)
fn visit_setter_prop(&mut self, n: &SetterProp)
This method can be overriden to customize the visitor behavior.
fn visit_span(&mut self, n: &Span)
source§fn visit_spread_element(&mut self, n: &SpreadElement)
fn visit_spread_element(&mut self, n: &SpreadElement)
This method can be overriden to customize the visitor behavior.
source§fn visit_static_block(&mut self, n: &StaticBlock)
fn visit_static_block(&mut self, n: &StaticBlock)
This method can be overriden to customize the visitor behavior.
source§fn visit_stmt(&mut self, n: &Stmt)
fn visit_stmt(&mut self, n: &Stmt)
This method can be overriden to customize the visitor behavior.
fn visit_stmts(&mut self, n: &[Stmt])
source§fn visit_str(&mut self, n: &Str)
fn visit_str(&mut self, n: &Str)
This method can be overriden to customize the visitor behavior.
source§fn visit_super(&mut self, n: &Super)
fn visit_super(&mut self, n: &Super)
This method can be overriden to customize the visitor behavior.
source§fn visit_super_prop(&mut self, n: &SuperProp)
fn visit_super_prop(&mut self, n: &SuperProp)
This method can be overriden to customize the visitor behavior.
source§fn visit_super_prop_expr(&mut self, n: &SuperPropExpr)
fn visit_super_prop_expr(&mut self, n: &SuperPropExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_switch_case(&mut self, n: &SwitchCase)
fn visit_switch_case(&mut self, n: &SwitchCase)
This method can be overriden to customize the visitor behavior.
fn visit_switch_cases(&mut self, n: &[SwitchCase])
source§fn visit_switch_stmt(&mut self, n: &SwitchStmt)
fn visit_switch_stmt(&mut self, n: &SwitchStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_tagged_tpl(&mut self, n: &TaggedTpl)
fn visit_tagged_tpl(&mut self, n: &TaggedTpl)
This method can be overriden to customize the visitor behavior.
source§fn visit_this_expr(&mut self, n: &ThisExpr)
fn visit_this_expr(&mut self, n: &ThisExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_throw_stmt(&mut self, n: &ThrowStmt)
fn visit_throw_stmt(&mut self, n: &ThrowStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_tpl(&mut self, n: &Tpl)
fn visit_tpl(&mut self, n: &Tpl)
This method can be overriden to customize the visitor behavior.
source§fn visit_tpl_element(&mut self, n: &TplElement)
fn visit_tpl_element(&mut self, n: &TplElement)
This method can be overriden to customize the visitor behavior.
fn visit_tpl_elements(&mut self, n: &[TplElement])
source§fn visit_true_plus_minus(&mut self, n: &TruePlusMinus)
fn visit_true_plus_minus(&mut self, n: &TruePlusMinus)
This method can be overriden to customize the visitor behavior.
source§fn visit_try_stmt(&mut self, n: &TryStmt)
fn visit_try_stmt(&mut self, n: &TryStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_array_type(&mut self, n: &TsArrayType)
fn visit_ts_array_type(&mut self, n: &TsArrayType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_as_expr(&mut self, n: &TsAsExpr)
fn visit_ts_as_expr(&mut self, n: &TsAsExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_call_signature_decl(&mut self, n: &TsCallSignatureDecl)
fn visit_ts_call_signature_decl(&mut self, n: &TsCallSignatureDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_conditional_type(&mut self, n: &TsConditionalType)
fn visit_ts_conditional_type(&mut self, n: &TsConditionalType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_const_assertion(&mut self, n: &TsConstAssertion)
fn visit_ts_const_assertion(&mut self, n: &TsConstAssertion)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_construct_signature_decl(&mut self, n: &TsConstructSignatureDecl)
fn visit_ts_construct_signature_decl(&mut self, n: &TsConstructSignatureDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_constructor_type(&mut self, n: &TsConstructorType)
fn visit_ts_constructor_type(&mut self, n: &TsConstructorType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_entity_name(&mut self, n: &TsEntityName)
fn visit_ts_entity_name(&mut self, n: &TsEntityName)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_enum_decl(&mut self, n: &TsEnumDecl)
fn visit_ts_enum_decl(&mut self, n: &TsEnumDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_enum_member(&mut self, n: &TsEnumMember)
fn visit_ts_enum_member(&mut self, n: &TsEnumMember)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_enum_member_id(&mut self, n: &TsEnumMemberId)
fn visit_ts_enum_member_id(&mut self, n: &TsEnumMemberId)
This method can be overriden to customize the visitor behavior.
fn visit_ts_enum_members(&mut self, n: &[TsEnumMember])
source§fn visit_ts_export_assignment(&mut self, n: &TsExportAssignment)
fn visit_ts_export_assignment(&mut self, n: &TsExportAssignment)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_expr_with_type_args(&mut self, n: &TsExprWithTypeArgs)
fn visit_ts_expr_with_type_args(&mut self, n: &TsExprWithTypeArgs)
This method can be overriden to customize the visitor behavior.
fn visit_ts_expr_with_type_args_vec(&mut self, n: &[TsExprWithTypeArgs])
source§fn visit_ts_external_module_ref(&mut self, n: &TsExternalModuleRef)
fn visit_ts_external_module_ref(&mut self, n: &TsExternalModuleRef)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_fn_or_constructor_type(&mut self, n: &TsFnOrConstructorType)
fn visit_ts_fn_or_constructor_type(&mut self, n: &TsFnOrConstructorType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_fn_param(&mut self, n: &TsFnParam)
fn visit_ts_fn_param(&mut self, n: &TsFnParam)
This method can be overriden to customize the visitor behavior.
fn visit_ts_fn_params(&mut self, n: &[TsFnParam])
source§fn visit_ts_fn_type(&mut self, n: &TsFnType)
fn visit_ts_fn_type(&mut self, n: &TsFnType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_getter_signature(&mut self, n: &TsGetterSignature)
fn visit_ts_getter_signature(&mut self, n: &TsGetterSignature)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_import_equals_decl(&mut self, n: &TsImportEqualsDecl)
fn visit_ts_import_equals_decl(&mut self, n: &TsImportEqualsDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_import_type(&mut self, n: &TsImportType)
fn visit_ts_import_type(&mut self, n: &TsImportType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_index_signature(&mut self, n: &TsIndexSignature)
fn visit_ts_index_signature(&mut self, n: &TsIndexSignature)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_indexed_access_type(&mut self, n: &TsIndexedAccessType)
fn visit_ts_indexed_access_type(&mut self, n: &TsIndexedAccessType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_infer_type(&mut self, n: &TsInferType)
fn visit_ts_infer_type(&mut self, n: &TsInferType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_instantiation(&mut self, n: &TsInstantiation)
fn visit_ts_instantiation(&mut self, n: &TsInstantiation)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_interface_body(&mut self, n: &TsInterfaceBody)
fn visit_ts_interface_body(&mut self, n: &TsInterfaceBody)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_interface_decl(&mut self, n: &TsInterfaceDecl)
fn visit_ts_interface_decl(&mut self, n: &TsInterfaceDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_intersection_type(&mut self, n: &TsIntersectionType)
fn visit_ts_intersection_type(&mut self, n: &TsIntersectionType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_keyword_type(&mut self, n: &TsKeywordType)
fn visit_ts_keyword_type(&mut self, n: &TsKeywordType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_keyword_type_kind(&mut self, n: &TsKeywordTypeKind)
fn visit_ts_keyword_type_kind(&mut self, n: &TsKeywordTypeKind)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_lit(&mut self, n: &TsLit)
fn visit_ts_lit(&mut self, n: &TsLit)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_lit_type(&mut self, n: &TsLitType)
fn visit_ts_lit_type(&mut self, n: &TsLitType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_mapped_type(&mut self, n: &TsMappedType)
fn visit_ts_mapped_type(&mut self, n: &TsMappedType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_method_signature(&mut self, n: &TsMethodSignature)
fn visit_ts_method_signature(&mut self, n: &TsMethodSignature)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_module_block(&mut self, n: &TsModuleBlock)
fn visit_ts_module_block(&mut self, n: &TsModuleBlock)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_module_decl(&mut self, n: &TsModuleDecl)
fn visit_ts_module_decl(&mut self, n: &TsModuleDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_module_name(&mut self, n: &TsModuleName)
fn visit_ts_module_name(&mut self, n: &TsModuleName)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_module_ref(&mut self, n: &TsModuleRef)
fn visit_ts_module_ref(&mut self, n: &TsModuleRef)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_namespace_body(&mut self, n: &TsNamespaceBody)
fn visit_ts_namespace_body(&mut self, n: &TsNamespaceBody)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_namespace_decl(&mut self, n: &TsNamespaceDecl)
fn visit_ts_namespace_decl(&mut self, n: &TsNamespaceDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_namespace_export_decl(&mut self, n: &TsNamespaceExportDecl)
fn visit_ts_namespace_export_decl(&mut self, n: &TsNamespaceExportDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_non_null_expr(&mut self, n: &TsNonNullExpr)
fn visit_ts_non_null_expr(&mut self, n: &TsNonNullExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_optional_type(&mut self, n: &TsOptionalType)
fn visit_ts_optional_type(&mut self, n: &TsOptionalType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_param_prop(&mut self, n: &TsParamProp)
fn visit_ts_param_prop(&mut self, n: &TsParamProp)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_param_prop_param(&mut self, n: &TsParamPropParam)
fn visit_ts_param_prop_param(&mut self, n: &TsParamPropParam)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_parenthesized_type(&mut self, n: &TsParenthesizedType)
fn visit_ts_parenthesized_type(&mut self, n: &TsParenthesizedType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_property_signature(&mut self, n: &TsPropertySignature)
fn visit_ts_property_signature(&mut self, n: &TsPropertySignature)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_qualified_name(&mut self, n: &TsQualifiedName)
fn visit_ts_qualified_name(&mut self, n: &TsQualifiedName)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_rest_type(&mut self, n: &TsRestType)
fn visit_ts_rest_type(&mut self, n: &TsRestType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_satisfies_expr(&mut self, n: &TsSatisfiesExpr)
fn visit_ts_satisfies_expr(&mut self, n: &TsSatisfiesExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_setter_signature(&mut self, n: &TsSetterSignature)
fn visit_ts_setter_signature(&mut self, n: &TsSetterSignature)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_this_type(&mut self, n: &TsThisType)
fn visit_ts_this_type(&mut self, n: &TsThisType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_this_type_or_ident(&mut self, n: &TsThisTypeOrIdent)
fn visit_ts_this_type_or_ident(&mut self, n: &TsThisTypeOrIdent)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_tpl_lit_type(&mut self, n: &TsTplLitType)
fn visit_ts_tpl_lit_type(&mut self, n: &TsTplLitType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_tuple_element(&mut self, n: &TsTupleElement)
fn visit_ts_tuple_element(&mut self, n: &TsTupleElement)
This method can be overriden to customize the visitor behavior.
fn visit_ts_tuple_elements(&mut self, n: &[TsTupleElement])
source§fn visit_ts_tuple_type(&mut self, n: &TsTupleType)
fn visit_ts_tuple_type(&mut self, n: &TsTupleType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type(&mut self, n: &TsType)
fn visit_ts_type(&mut self, n: &TsType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_alias_decl(&mut self, n: &TsTypeAliasDecl)
fn visit_ts_type_alias_decl(&mut self, n: &TsTypeAliasDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_ann(&mut self, n: &TsTypeAnn)
fn visit_ts_type_ann(&mut self, n: &TsTypeAnn)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_assertion(&mut self, n: &TsTypeAssertion)
fn visit_ts_type_assertion(&mut self, n: &TsTypeAssertion)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_element(&mut self, n: &TsTypeElement)
fn visit_ts_type_element(&mut self, n: &TsTypeElement)
This method can be overriden to customize the visitor behavior.
fn visit_ts_type_elements(&mut self, n: &[TsTypeElement])
source§fn visit_ts_type_lit(&mut self, n: &TsTypeLit)
fn visit_ts_type_lit(&mut self, n: &TsTypeLit)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_operator(&mut self, n: &TsTypeOperator)
fn visit_ts_type_operator(&mut self, n: &TsTypeOperator)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_operator_op(&mut self, n: &TsTypeOperatorOp)
fn visit_ts_type_operator_op(&mut self, n: &TsTypeOperatorOp)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_param(&mut self, n: &TsTypeParam)
fn visit_ts_type_param(&mut self, n: &TsTypeParam)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_param_decl(&mut self, n: &TsTypeParamDecl)
fn visit_ts_type_param_decl(&mut self, n: &TsTypeParamDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_param_instantiation(&mut self, n: &TsTypeParamInstantiation)
fn visit_ts_type_param_instantiation(&mut self, n: &TsTypeParamInstantiation)
This method can be overriden to customize the visitor behavior.
fn visit_ts_type_params(&mut self, n: &[TsTypeParam])
source§fn visit_ts_type_predicate(&mut self, n: &TsTypePredicate)
fn visit_ts_type_predicate(&mut self, n: &TsTypePredicate)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_query(&mut self, n: &TsTypeQuery)
fn visit_ts_type_query(&mut self, n: &TsTypeQuery)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_query_expr(&mut self, n: &TsTypeQueryExpr)
fn visit_ts_type_query_expr(&mut self, n: &TsTypeQueryExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_type_ref(&mut self, n: &TsTypeRef)
fn visit_ts_type_ref(&mut self, n: &TsTypeRef)
This method can be overriden to customize the visitor behavior.
fn visit_ts_types(&mut self, n: &[Box<TsType>])
source§fn visit_ts_union_or_intersection_type(&mut self, n: &TsUnionOrIntersectionType)
fn visit_ts_union_or_intersection_type(&mut self, n: &TsUnionOrIntersectionType)
This method can be overriden to customize the visitor behavior.
source§fn visit_ts_union_type(&mut self, n: &TsUnionType)
fn visit_ts_union_type(&mut self, n: &TsUnionType)
This method can be overriden to customize the visitor behavior.
source§fn visit_unary_expr(&mut self, n: &UnaryExpr)
fn visit_unary_expr(&mut self, n: &UnaryExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_unary_op(&mut self, n: &UnaryOp)
fn visit_unary_op(&mut self, n: &UnaryOp)
This method can be overriden to customize the visitor behavior.
source§fn visit_update_expr(&mut self, n: &UpdateExpr)
fn visit_update_expr(&mut self, n: &UpdateExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_update_op(&mut self, n: &UpdateOp)
fn visit_update_op(&mut self, n: &UpdateOp)
This method can be overriden to customize the visitor behavior.
source§fn visit_var_decl(&mut self, n: &VarDecl)
fn visit_var_decl(&mut self, n: &VarDecl)
This method can be overriden to customize the visitor behavior.
source§fn visit_var_decl_kind(&mut self, n: &VarDeclKind)
fn visit_var_decl_kind(&mut self, n: &VarDeclKind)
This method can be overriden to customize the visitor behavior.
source§fn visit_var_decl_or_expr(&mut self, n: &VarDeclOrExpr)
fn visit_var_decl_or_expr(&mut self, n: &VarDeclOrExpr)
This method can be overriden to customize the visitor behavior.
source§fn visit_var_decl_or_pat(&mut self, n: &VarDeclOrPat)
fn visit_var_decl_or_pat(&mut self, n: &VarDeclOrPat)
This method can be overriden to customize the visitor behavior.
source§fn visit_var_declarator(&mut self, n: &VarDeclarator)
fn visit_var_declarator(&mut self, n: &VarDeclarator)
This method can be overriden to customize the visitor behavior.
fn visit_var_declarators(&mut self, n: &[VarDeclarator])
source§fn visit_while_stmt(&mut self, n: &WhileStmt)
fn visit_while_stmt(&mut self, n: &WhileStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_with_stmt(&mut self, n: &WithStmt)
fn visit_with_stmt(&mut self, n: &WithStmt)
This method can be overriden to customize the visitor behavior.
source§fn visit_yield_expr(&mut self, n: &YieldExpr)
fn visit_yield_expr(&mut self, n: &YieldExpr)
This method can be overriden to customize the visitor behavior.
source§impl<V> VisitMut for Optional<V>where
V: VisitMut,
impl<V> VisitMut for Optional<V>where
V: VisitMut,
source§fn visit_mut_accessibility(&mut self, n: &mut Accessibility)
fn visit_mut_accessibility(&mut self, n: &mut Accessibility)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_array_lit(&mut self, n: &mut ArrayLit)
fn visit_mut_array_lit(&mut self, n: &mut ArrayLit)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_array_pat(&mut self, n: &mut ArrayPat)
fn visit_mut_array_pat(&mut self, n: &mut ArrayPat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_arrow_expr(&mut self, n: &mut ArrowExpr)
fn visit_mut_arrow_expr(&mut self, n: &mut ArrowExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_assign_expr(&mut self, n: &mut AssignExpr)
fn visit_mut_assign_expr(&mut self, n: &mut AssignExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_assign_op(&mut self, n: &mut AssignOp)
fn visit_mut_assign_op(&mut self, n: &mut AssignOp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_assign_pat(&mut self, n: &mut AssignPat)
fn visit_mut_assign_pat(&mut self, n: &mut AssignPat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_assign_pat_prop(&mut self, n: &mut AssignPatProp)
fn visit_mut_assign_pat_prop(&mut self, n: &mut AssignPatProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_assign_prop(&mut self, n: &mut AssignProp)
fn visit_mut_assign_prop(&mut self, n: &mut AssignProp)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_atom(&mut self, n: &mut Atom)
source§fn visit_mut_await_expr(&mut self, n: &mut AwaitExpr)
fn visit_mut_await_expr(&mut self, n: &mut AwaitExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_big_int(&mut self, n: &mut BigInt)
fn visit_mut_big_int(&mut self, n: &mut BigInt)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_big_int_value(&mut self, n: &mut BigInt)
source§fn visit_mut_bin_expr(&mut self, n: &mut BinExpr)
fn visit_mut_bin_expr(&mut self, n: &mut BinExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_binary_op(&mut self, n: &mut BinaryOp)
fn visit_mut_binary_op(&mut self, n: &mut BinaryOp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_binding_ident(&mut self, n: &mut BindingIdent)
fn visit_mut_binding_ident(&mut self, n: &mut BindingIdent)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_block_stmt(&mut self, n: &mut BlockStmt)
fn visit_mut_block_stmt(&mut self, n: &mut BlockStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_block_stmt_or_expr(&mut self, n: &mut BlockStmtOrExpr)
fn visit_mut_block_stmt_or_expr(&mut self, n: &mut BlockStmtOrExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_bool(&mut self, n: &mut Bool)
fn visit_mut_bool(&mut self, n: &mut Bool)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_break_stmt(&mut self, n: &mut BreakStmt)
fn visit_mut_break_stmt(&mut self, n: &mut BreakStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_call_expr(&mut self, n: &mut CallExpr)
fn visit_mut_call_expr(&mut self, n: &mut CallExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_callee(&mut self, n: &mut Callee)
fn visit_mut_callee(&mut self, n: &mut Callee)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_catch_clause(&mut self, n: &mut CatchClause)
fn visit_mut_catch_clause(&mut self, n: &mut CatchClause)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_class(&mut self, n: &mut Class)
fn visit_mut_class(&mut self, n: &mut Class)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_class_decl(&mut self, n: &mut ClassDecl)
fn visit_mut_class_decl(&mut self, n: &mut ClassDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_class_expr(&mut self, n: &mut ClassExpr)
fn visit_mut_class_expr(&mut self, n: &mut ClassExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_class_member(&mut self, n: &mut ClassMember)
fn visit_mut_class_member(&mut self, n: &mut ClassMember)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_class_members(&mut self, n: &mut Vec<ClassMember>)
source§fn visit_mut_class_method(&mut self, n: &mut ClassMethod)
fn visit_mut_class_method(&mut self, n: &mut ClassMethod)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_class_prop(&mut self, n: &mut ClassProp)
fn visit_mut_class_prop(&mut self, n: &mut ClassProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_computed_prop_name(&mut self, n: &mut ComputedPropName)
fn visit_mut_computed_prop_name(&mut self, n: &mut ComputedPropName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_cond_expr(&mut self, n: &mut CondExpr)
fn visit_mut_cond_expr(&mut self, n: &mut CondExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_constructor(&mut self, n: &mut Constructor)
fn visit_mut_constructor(&mut self, n: &mut Constructor)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_continue_stmt(&mut self, n: &mut ContinueStmt)
fn visit_mut_continue_stmt(&mut self, n: &mut ContinueStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_debugger_stmt(&mut self, n: &mut DebuggerStmt)
fn visit_mut_debugger_stmt(&mut self, n: &mut DebuggerStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_decl(&mut self, n: &mut Decl)
fn visit_mut_decl(&mut self, n: &mut Decl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_decorator(&mut self, n: &mut Decorator)
fn visit_mut_decorator(&mut self, n: &mut Decorator)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_decorators(&mut self, n: &mut Vec<Decorator>)
source§fn visit_mut_default_decl(&mut self, n: &mut DefaultDecl)
fn visit_mut_default_decl(&mut self, n: &mut DefaultDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_do_while_stmt(&mut self, n: &mut DoWhileStmt)
fn visit_mut_do_while_stmt(&mut self, n: &mut DoWhileStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_empty_stmt(&mut self, n: &mut EmptyStmt)
fn visit_mut_empty_stmt(&mut self, n: &mut EmptyStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_export_all(&mut self, n: &mut ExportAll)
fn visit_mut_export_all(&mut self, n: &mut ExportAll)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_export_decl(&mut self, n: &mut ExportDecl)
fn visit_mut_export_decl(&mut self, n: &mut ExportDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_export_default_decl(&mut self, n: &mut ExportDefaultDecl)
fn visit_mut_export_default_decl(&mut self, n: &mut ExportDefaultDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_export_default_expr(&mut self, n: &mut ExportDefaultExpr)
fn visit_mut_export_default_expr(&mut self, n: &mut ExportDefaultExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_export_default_specifier(&mut self, n: &mut ExportDefaultSpecifier)
fn visit_mut_export_default_specifier(&mut self, n: &mut ExportDefaultSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_export_named_specifier(&mut self, n: &mut ExportNamedSpecifier)
fn visit_mut_export_named_specifier(&mut self, n: &mut ExportNamedSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_export_namespace_specifier(
&mut self,
n: &mut ExportNamespaceSpecifier,
)
fn visit_mut_export_namespace_specifier( &mut self, n: &mut ExportNamespaceSpecifier, )
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_export_specifier(&mut self, n: &mut ExportSpecifier)
fn visit_mut_export_specifier(&mut self, n: &mut ExportSpecifier)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_export_specifiers(&mut self, n: &mut Vec<ExportSpecifier>)
source§fn visit_mut_expr(&mut self, n: &mut Expr)
fn visit_mut_expr(&mut self, n: &mut Expr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_expr_or_spread(&mut self, n: &mut ExprOrSpread)
fn visit_mut_expr_or_spread(&mut self, n: &mut ExprOrSpread)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_expr_or_spreads(&mut self, n: &mut Vec<ExprOrSpread>)
source§fn visit_mut_expr_stmt(&mut self, n: &mut ExprStmt)
fn visit_mut_expr_stmt(&mut self, n: &mut ExprStmt)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_exprs(&mut self, n: &mut Vec<Box<Expr>>)
source§fn visit_mut_fn_decl(&mut self, n: &mut FnDecl)
fn visit_mut_fn_decl(&mut self, n: &mut FnDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_fn_expr(&mut self, n: &mut FnExpr)
fn visit_mut_fn_expr(&mut self, n: &mut FnExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_for_in_stmt(&mut self, n: &mut ForInStmt)
fn visit_mut_for_in_stmt(&mut self, n: &mut ForInStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_for_of_stmt(&mut self, n: &mut ForOfStmt)
fn visit_mut_for_of_stmt(&mut self, n: &mut ForOfStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_for_stmt(&mut self, n: &mut ForStmt)
fn visit_mut_for_stmt(&mut self, n: &mut ForStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_function(&mut self, n: &mut Function)
fn visit_mut_function(&mut self, n: &mut Function)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_getter_prop(&mut self, n: &mut GetterProp)
fn visit_mut_getter_prop(&mut self, n: &mut GetterProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ident(&mut self, n: &mut Ident)
fn visit_mut_ident(&mut self, n: &mut Ident)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_if_stmt(&mut self, n: &mut IfStmt)
fn visit_mut_if_stmt(&mut self, n: &mut IfStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_import(&mut self, n: &mut Import)
fn visit_mut_import(&mut self, n: &mut Import)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_import_decl(&mut self, n: &mut ImportDecl)
fn visit_mut_import_decl(&mut self, n: &mut ImportDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_import_default_specifier(&mut self, n: &mut ImportDefaultSpecifier)
fn visit_mut_import_default_specifier(&mut self, n: &mut ImportDefaultSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_import_named_specifier(&mut self, n: &mut ImportNamedSpecifier)
fn visit_mut_import_named_specifier(&mut self, n: &mut ImportNamedSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_import_specifier(&mut self, n: &mut ImportSpecifier)
fn visit_mut_import_specifier(&mut self, n: &mut ImportSpecifier)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_import_specifiers(&mut self, n: &mut Vec<ImportSpecifier>)
source§fn visit_mut_import_star_as_specifier(&mut self, n: &mut ImportStarAsSpecifier)
fn visit_mut_import_star_as_specifier(&mut self, n: &mut ImportStarAsSpecifier)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_invalid(&mut self, n: &mut Invalid)
fn visit_mut_invalid(&mut self, n: &mut Invalid)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_js_word(&mut self, n: &mut Atom<JsWordStaticSet>)
source§fn visit_mut_jsx_attr(&mut self, n: &mut JSXAttr)
fn visit_mut_jsx_attr(&mut self, n: &mut JSXAttr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_attr_name(&mut self, n: &mut JSXAttrName)
fn visit_mut_jsx_attr_name(&mut self, n: &mut JSXAttrName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_attr_or_spread(&mut self, n: &mut JSXAttrOrSpread)
fn visit_mut_jsx_attr_or_spread(&mut self, n: &mut JSXAttrOrSpread)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_jsx_attr_or_spreads(&mut self, n: &mut Vec<JSXAttrOrSpread>)
source§fn visit_mut_jsx_attr_value(&mut self, n: &mut JSXAttrValue)
fn visit_mut_jsx_attr_value(&mut self, n: &mut JSXAttrValue)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_closing_element(&mut self, n: &mut JSXClosingElement)
fn visit_mut_jsx_closing_element(&mut self, n: &mut JSXClosingElement)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_closing_fragment(&mut self, n: &mut JSXClosingFragment)
fn visit_mut_jsx_closing_fragment(&mut self, n: &mut JSXClosingFragment)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_element(&mut self, n: &mut JSXElement)
fn visit_mut_jsx_element(&mut self, n: &mut JSXElement)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_element_child(&mut self, n: &mut JSXElementChild)
fn visit_mut_jsx_element_child(&mut self, n: &mut JSXElementChild)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_jsx_element_children(&mut self, n: &mut Vec<JSXElementChild>)
source§fn visit_mut_jsx_element_name(&mut self, n: &mut JSXElementName)
fn visit_mut_jsx_element_name(&mut self, n: &mut JSXElementName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_empty_expr(&mut self, n: &mut JSXEmptyExpr)
fn visit_mut_jsx_empty_expr(&mut self, n: &mut JSXEmptyExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_expr(&mut self, n: &mut JSXExpr)
fn visit_mut_jsx_expr(&mut self, n: &mut JSXExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_expr_container(&mut self, n: &mut JSXExprContainer)
fn visit_mut_jsx_expr_container(&mut self, n: &mut JSXExprContainer)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_fragment(&mut self, n: &mut JSXFragment)
fn visit_mut_jsx_fragment(&mut self, n: &mut JSXFragment)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_member_expr(&mut self, n: &mut JSXMemberExpr)
fn visit_mut_jsx_member_expr(&mut self, n: &mut JSXMemberExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_namespaced_name(&mut self, n: &mut JSXNamespacedName)
fn visit_mut_jsx_namespaced_name(&mut self, n: &mut JSXNamespacedName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_object(&mut self, n: &mut JSXObject)
fn visit_mut_jsx_object(&mut self, n: &mut JSXObject)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_opening_element(&mut self, n: &mut JSXOpeningElement)
fn visit_mut_jsx_opening_element(&mut self, n: &mut JSXOpeningElement)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_opening_fragment(&mut self, n: &mut JSXOpeningFragment)
fn visit_mut_jsx_opening_fragment(&mut self, n: &mut JSXOpeningFragment)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_spread_child(&mut self, n: &mut JSXSpreadChild)
fn visit_mut_jsx_spread_child(&mut self, n: &mut JSXSpreadChild)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_jsx_text(&mut self, n: &mut JSXText)
fn visit_mut_jsx_text(&mut self, n: &mut JSXText)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_key_value_pat_prop(&mut self, n: &mut KeyValuePatProp)
fn visit_mut_key_value_pat_prop(&mut self, n: &mut KeyValuePatProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_key_value_prop(&mut self, n: &mut KeyValueProp)
fn visit_mut_key_value_prop(&mut self, n: &mut KeyValueProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_labeled_stmt(&mut self, n: &mut LabeledStmt)
fn visit_mut_labeled_stmt(&mut self, n: &mut LabeledStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_lit(&mut self, n: &mut Lit)
fn visit_mut_lit(&mut self, n: &mut Lit)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_member_expr(&mut self, n: &mut MemberExpr)
fn visit_mut_member_expr(&mut self, n: &mut MemberExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_member_prop(&mut self, n: &mut MemberProp)
fn visit_mut_member_prop(&mut self, n: &mut MemberProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_meta_prop_expr(&mut self, n: &mut MetaPropExpr)
fn visit_mut_meta_prop_expr(&mut self, n: &mut MetaPropExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_meta_prop_kind(&mut self, n: &mut MetaPropKind)
fn visit_mut_meta_prop_kind(&mut self, n: &mut MetaPropKind)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_method_kind(&mut self, n: &mut MethodKind)
fn visit_mut_method_kind(&mut self, n: &mut MethodKind)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_method_prop(&mut self, n: &mut MethodProp)
fn visit_mut_method_prop(&mut self, n: &mut MethodProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_module(&mut self, n: &mut Module)
fn visit_mut_module(&mut self, n: &mut Module)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_module_decl(&mut self, n: &mut ModuleDecl)
fn visit_mut_module_decl(&mut self, n: &mut ModuleDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_module_export_name(&mut self, n: &mut ModuleExportName)
fn visit_mut_module_export_name(&mut self, n: &mut ModuleExportName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_module_item(&mut self, n: &mut ModuleItem)
fn visit_mut_module_item(&mut self, n: &mut ModuleItem)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_module_items(&mut self, n: &mut Vec<ModuleItem>)
source§fn visit_mut_named_export(&mut self, n: &mut NamedExport)
fn visit_mut_named_export(&mut self, n: &mut NamedExport)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_new_expr(&mut self, n: &mut NewExpr)
fn visit_mut_new_expr(&mut self, n: &mut NewExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_null(&mut self, n: &mut Null)
fn visit_mut_null(&mut self, n: &mut Null)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_number(&mut self, n: &mut Number)
fn visit_mut_number(&mut self, n: &mut Number)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_object_lit(&mut self, n: &mut ObjectLit)
fn visit_mut_object_lit(&mut self, n: &mut ObjectLit)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_object_pat(&mut self, n: &mut ObjectPat)
fn visit_mut_object_pat(&mut self, n: &mut ObjectPat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_object_pat_prop(&mut self, n: &mut ObjectPatProp)
fn visit_mut_object_pat_prop(&mut self, n: &mut ObjectPatProp)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_object_pat_props(&mut self, n: &mut Vec<ObjectPatProp>)
fn visit_mut_opt_accessibility(&mut self, n: &mut Option<Accessibility>)
fn visit_mut_opt_atom(&mut self, n: &mut Option<Atom>)
fn visit_mut_opt_block_stmt(&mut self, n: &mut Option<BlockStmt>)
source§fn visit_mut_opt_call(&mut self, n: &mut OptCall)
fn visit_mut_opt_call(&mut self, n: &mut OptCall)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_opt_catch_clause(&mut self, n: &mut Option<CatchClause>)
source§fn visit_mut_opt_chain_base(&mut self, n: &mut OptChainBase)
fn visit_mut_opt_chain_base(&mut self, n: &mut OptChainBase)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_opt_chain_expr(&mut self, n: &mut OptChainExpr)
fn visit_mut_opt_chain_expr(&mut self, n: &mut OptChainExpr)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_opt_expr(&mut self, n: &mut Option<Box<Expr>>)
fn visit_mut_opt_expr_or_spread(&mut self, n: &mut Option<ExprOrSpread>)
fn visit_mut_opt_expr_or_spreads(&mut self, n: &mut Option<Vec<ExprOrSpread>>)
fn visit_mut_opt_ident(&mut self, n: &mut Option<Ident>)
fn visit_mut_opt_jsx_attr_value(&mut self, n: &mut Option<JSXAttrValue>)
fn visit_mut_opt_jsx_closing_element( &mut self, n: &mut Option<JSXClosingElement>, )
fn visit_mut_opt_module_export_name(&mut self, n: &mut Option<ModuleExportName>)
fn visit_mut_opt_module_items(&mut self, n: &mut Option<Vec<ModuleItem>>)
fn visit_mut_opt_object_lit(&mut self, n: &mut Option<Box<ObjectLit>>)
fn visit_mut_opt_pat(&mut self, n: &mut Option<Pat>)
fn visit_mut_opt_span(&mut self, n: &mut Option<Span>)
fn visit_mut_opt_stmt(&mut self, n: &mut Option<Box<Stmt>>)
fn visit_mut_opt_str(&mut self, n: &mut Option<Box<Str>>)
fn visit_mut_opt_true_plus_minus(&mut self, n: &mut Option<TruePlusMinus>)
fn visit_mut_opt_ts_entity_name(&mut self, n: &mut Option<TsEntityName>)
fn visit_mut_opt_ts_namespace_body(&mut self, n: &mut Option<TsNamespaceBody>)
fn visit_mut_opt_ts_type(&mut self, n: &mut Option<Box<TsType>>)
fn visit_mut_opt_ts_type_ann(&mut self, n: &mut Option<Box<TsTypeAnn>>)
fn visit_mut_opt_ts_type_param_decl( &mut self, n: &mut Option<Box<TsTypeParamDecl>>, )
fn visit_mut_opt_ts_type_param_instantiation( &mut self, n: &mut Option<Box<TsTypeParamInstantiation>>, )
fn visit_mut_opt_var_decl_or_expr(&mut self, n: &mut Option<VarDeclOrExpr>)
fn visit_mut_opt_vec_expr_or_spreads( &mut self, n: &mut Vec<Option<ExprOrSpread>>, )
fn visit_mut_opt_vec_pats(&mut self, n: &mut Vec<Option<Pat>>)
source§fn visit_mut_param(&mut self, n: &mut Param)
fn visit_mut_param(&mut self, n: &mut Param)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_param_or_ts_param_prop(&mut self, n: &mut ParamOrTsParamProp)
fn visit_mut_param_or_ts_param_prop(&mut self, n: &mut ParamOrTsParamProp)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_param_or_ts_param_props(&mut self, n: &mut Vec<ParamOrTsParamProp>)
fn visit_mut_params(&mut self, n: &mut Vec<Param>)
source§fn visit_mut_paren_expr(&mut self, n: &mut ParenExpr)
fn visit_mut_paren_expr(&mut self, n: &mut ParenExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_pat(&mut self, n: &mut Pat)
fn visit_mut_pat(&mut self, n: &mut Pat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_pat_or_expr(&mut self, n: &mut PatOrExpr)
fn visit_mut_pat_or_expr(&mut self, n: &mut PatOrExpr)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_pats(&mut self, n: &mut Vec<Pat>)
source§fn visit_mut_private_method(&mut self, n: &mut PrivateMethod)
fn visit_mut_private_method(&mut self, n: &mut PrivateMethod)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_private_name(&mut self, n: &mut PrivateName)
fn visit_mut_private_name(&mut self, n: &mut PrivateName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_private_prop(&mut self, n: &mut PrivateProp)
fn visit_mut_private_prop(&mut self, n: &mut PrivateProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_program(&mut self, n: &mut Program)
fn visit_mut_program(&mut self, n: &mut Program)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_prop(&mut self, n: &mut Prop)
fn visit_mut_prop(&mut self, n: &mut Prop)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_prop_name(&mut self, n: &mut PropName)
fn visit_mut_prop_name(&mut self, n: &mut PropName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_prop_or_spread(&mut self, n: &mut PropOrSpread)
fn visit_mut_prop_or_spread(&mut self, n: &mut PropOrSpread)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_prop_or_spreads(&mut self, n: &mut Vec<PropOrSpread>)
source§fn visit_mut_regex(&mut self, n: &mut Regex)
fn visit_mut_regex(&mut self, n: &mut Regex)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_reserved_unused(&mut self, n: &mut ReservedUnused)
fn visit_mut_reserved_unused(&mut self, n: &mut ReservedUnused)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_rest_pat(&mut self, n: &mut RestPat)
fn visit_mut_rest_pat(&mut self, n: &mut RestPat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_return_stmt(&mut self, n: &mut ReturnStmt)
fn visit_mut_return_stmt(&mut self, n: &mut ReturnStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_script(&mut self, n: &mut Script)
fn visit_mut_script(&mut self, n: &mut Script)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_seq_expr(&mut self, n: &mut SeqExpr)
fn visit_mut_seq_expr(&mut self, n: &mut SeqExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_setter_prop(&mut self, n: &mut SetterProp)
fn visit_mut_setter_prop(&mut self, n: &mut SetterProp)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_span(&mut self, n: &mut Span)
source§fn visit_mut_spread_element(&mut self, n: &mut SpreadElement)
fn visit_mut_spread_element(&mut self, n: &mut SpreadElement)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_static_block(&mut self, n: &mut StaticBlock)
fn visit_mut_static_block(&mut self, n: &mut StaticBlock)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_stmt(&mut self, n: &mut Stmt)
fn visit_mut_stmt(&mut self, n: &mut Stmt)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_stmts(&mut self, n: &mut Vec<Stmt>)
source§fn visit_mut_str(&mut self, n: &mut Str)
fn visit_mut_str(&mut self, n: &mut Str)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_super(&mut self, n: &mut Super)
fn visit_mut_super(&mut self, n: &mut Super)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_super_prop(&mut self, n: &mut SuperProp)
fn visit_mut_super_prop(&mut self, n: &mut SuperProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_super_prop_expr(&mut self, n: &mut SuperPropExpr)
fn visit_mut_super_prop_expr(&mut self, n: &mut SuperPropExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_switch_case(&mut self, n: &mut SwitchCase)
fn visit_mut_switch_case(&mut self, n: &mut SwitchCase)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_switch_cases(&mut self, n: &mut Vec<SwitchCase>)
source§fn visit_mut_switch_stmt(&mut self, n: &mut SwitchStmt)
fn visit_mut_switch_stmt(&mut self, n: &mut SwitchStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_tagged_tpl(&mut self, n: &mut TaggedTpl)
fn visit_mut_tagged_tpl(&mut self, n: &mut TaggedTpl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_this_expr(&mut self, n: &mut ThisExpr)
fn visit_mut_this_expr(&mut self, n: &mut ThisExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_throw_stmt(&mut self, n: &mut ThrowStmt)
fn visit_mut_throw_stmt(&mut self, n: &mut ThrowStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_tpl(&mut self, n: &mut Tpl)
fn visit_mut_tpl(&mut self, n: &mut Tpl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_tpl_element(&mut self, n: &mut TplElement)
fn visit_mut_tpl_element(&mut self, n: &mut TplElement)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_tpl_elements(&mut self, n: &mut Vec<TplElement>)
source§fn visit_mut_true_plus_minus(&mut self, n: &mut TruePlusMinus)
fn visit_mut_true_plus_minus(&mut self, n: &mut TruePlusMinus)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_try_stmt(&mut self, n: &mut TryStmt)
fn visit_mut_try_stmt(&mut self, n: &mut TryStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_array_type(&mut self, n: &mut TsArrayType)
fn visit_mut_ts_array_type(&mut self, n: &mut TsArrayType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_as_expr(&mut self, n: &mut TsAsExpr)
fn visit_mut_ts_as_expr(&mut self, n: &mut TsAsExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_call_signature_decl(&mut self, n: &mut TsCallSignatureDecl)
fn visit_mut_ts_call_signature_decl(&mut self, n: &mut TsCallSignatureDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_conditional_type(&mut self, n: &mut TsConditionalType)
fn visit_mut_ts_conditional_type(&mut self, n: &mut TsConditionalType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_const_assertion(&mut self, n: &mut TsConstAssertion)
fn visit_mut_ts_const_assertion(&mut self, n: &mut TsConstAssertion)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_construct_signature_decl(
&mut self,
n: &mut TsConstructSignatureDecl,
)
fn visit_mut_ts_construct_signature_decl( &mut self, n: &mut TsConstructSignatureDecl, )
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_constructor_type(&mut self, n: &mut TsConstructorType)
fn visit_mut_ts_constructor_type(&mut self, n: &mut TsConstructorType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_entity_name(&mut self, n: &mut TsEntityName)
fn visit_mut_ts_entity_name(&mut self, n: &mut TsEntityName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_enum_decl(&mut self, n: &mut TsEnumDecl)
fn visit_mut_ts_enum_decl(&mut self, n: &mut TsEnumDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_enum_member(&mut self, n: &mut TsEnumMember)
fn visit_mut_ts_enum_member(&mut self, n: &mut TsEnumMember)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_enum_member_id(&mut self, n: &mut TsEnumMemberId)
fn visit_mut_ts_enum_member_id(&mut self, n: &mut TsEnumMemberId)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_ts_enum_members(&mut self, n: &mut Vec<TsEnumMember>)
source§fn visit_mut_ts_export_assignment(&mut self, n: &mut TsExportAssignment)
fn visit_mut_ts_export_assignment(&mut self, n: &mut TsExportAssignment)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_expr_with_type_args(&mut self, n: &mut TsExprWithTypeArgs)
fn visit_mut_ts_expr_with_type_args(&mut self, n: &mut TsExprWithTypeArgs)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_ts_expr_with_type_args_vec( &mut self, n: &mut Vec<TsExprWithTypeArgs>, )
source§fn visit_mut_ts_external_module_ref(&mut self, n: &mut TsExternalModuleRef)
fn visit_mut_ts_external_module_ref(&mut self, n: &mut TsExternalModuleRef)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_fn_or_constructor_type(&mut self, n: &mut TsFnOrConstructorType)
fn visit_mut_ts_fn_or_constructor_type(&mut self, n: &mut TsFnOrConstructorType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_fn_param(&mut self, n: &mut TsFnParam)
fn visit_mut_ts_fn_param(&mut self, n: &mut TsFnParam)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_ts_fn_params(&mut self, n: &mut Vec<TsFnParam>)
source§fn visit_mut_ts_fn_type(&mut self, n: &mut TsFnType)
fn visit_mut_ts_fn_type(&mut self, n: &mut TsFnType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_getter_signature(&mut self, n: &mut TsGetterSignature)
fn visit_mut_ts_getter_signature(&mut self, n: &mut TsGetterSignature)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_import_equals_decl(&mut self, n: &mut TsImportEqualsDecl)
fn visit_mut_ts_import_equals_decl(&mut self, n: &mut TsImportEqualsDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_import_type(&mut self, n: &mut TsImportType)
fn visit_mut_ts_import_type(&mut self, n: &mut TsImportType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_index_signature(&mut self, n: &mut TsIndexSignature)
fn visit_mut_ts_index_signature(&mut self, n: &mut TsIndexSignature)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_indexed_access_type(&mut self, n: &mut TsIndexedAccessType)
fn visit_mut_ts_indexed_access_type(&mut self, n: &mut TsIndexedAccessType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_infer_type(&mut self, n: &mut TsInferType)
fn visit_mut_ts_infer_type(&mut self, n: &mut TsInferType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_instantiation(&mut self, n: &mut TsInstantiation)
fn visit_mut_ts_instantiation(&mut self, n: &mut TsInstantiation)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_interface_body(&mut self, n: &mut TsInterfaceBody)
fn visit_mut_ts_interface_body(&mut self, n: &mut TsInterfaceBody)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_interface_decl(&mut self, n: &mut TsInterfaceDecl)
fn visit_mut_ts_interface_decl(&mut self, n: &mut TsInterfaceDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_intersection_type(&mut self, n: &mut TsIntersectionType)
fn visit_mut_ts_intersection_type(&mut self, n: &mut TsIntersectionType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_keyword_type(&mut self, n: &mut TsKeywordType)
fn visit_mut_ts_keyword_type(&mut self, n: &mut TsKeywordType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_keyword_type_kind(&mut self, n: &mut TsKeywordTypeKind)
fn visit_mut_ts_keyword_type_kind(&mut self, n: &mut TsKeywordTypeKind)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_lit(&mut self, n: &mut TsLit)
fn visit_mut_ts_lit(&mut self, n: &mut TsLit)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_lit_type(&mut self, n: &mut TsLitType)
fn visit_mut_ts_lit_type(&mut self, n: &mut TsLitType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_mapped_type(&mut self, n: &mut TsMappedType)
fn visit_mut_ts_mapped_type(&mut self, n: &mut TsMappedType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_method_signature(&mut self, n: &mut TsMethodSignature)
fn visit_mut_ts_method_signature(&mut self, n: &mut TsMethodSignature)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_module_block(&mut self, n: &mut TsModuleBlock)
fn visit_mut_ts_module_block(&mut self, n: &mut TsModuleBlock)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_module_decl(&mut self, n: &mut TsModuleDecl)
fn visit_mut_ts_module_decl(&mut self, n: &mut TsModuleDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_module_name(&mut self, n: &mut TsModuleName)
fn visit_mut_ts_module_name(&mut self, n: &mut TsModuleName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_module_ref(&mut self, n: &mut TsModuleRef)
fn visit_mut_ts_module_ref(&mut self, n: &mut TsModuleRef)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_namespace_body(&mut self, n: &mut TsNamespaceBody)
fn visit_mut_ts_namespace_body(&mut self, n: &mut TsNamespaceBody)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_namespace_decl(&mut self, n: &mut TsNamespaceDecl)
fn visit_mut_ts_namespace_decl(&mut self, n: &mut TsNamespaceDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_namespace_export_decl(&mut self, n: &mut TsNamespaceExportDecl)
fn visit_mut_ts_namespace_export_decl(&mut self, n: &mut TsNamespaceExportDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_non_null_expr(&mut self, n: &mut TsNonNullExpr)
fn visit_mut_ts_non_null_expr(&mut self, n: &mut TsNonNullExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_optional_type(&mut self, n: &mut TsOptionalType)
fn visit_mut_ts_optional_type(&mut self, n: &mut TsOptionalType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_param_prop(&mut self, n: &mut TsParamProp)
fn visit_mut_ts_param_prop(&mut self, n: &mut TsParamProp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_param_prop_param(&mut self, n: &mut TsParamPropParam)
fn visit_mut_ts_param_prop_param(&mut self, n: &mut TsParamPropParam)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_parenthesized_type(&mut self, n: &mut TsParenthesizedType)
fn visit_mut_ts_parenthesized_type(&mut self, n: &mut TsParenthesizedType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_property_signature(&mut self, n: &mut TsPropertySignature)
fn visit_mut_ts_property_signature(&mut self, n: &mut TsPropertySignature)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_qualified_name(&mut self, n: &mut TsQualifiedName)
fn visit_mut_ts_qualified_name(&mut self, n: &mut TsQualifiedName)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_rest_type(&mut self, n: &mut TsRestType)
fn visit_mut_ts_rest_type(&mut self, n: &mut TsRestType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_satisfies_expr(&mut self, n: &mut TsSatisfiesExpr)
fn visit_mut_ts_satisfies_expr(&mut self, n: &mut TsSatisfiesExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_setter_signature(&mut self, n: &mut TsSetterSignature)
fn visit_mut_ts_setter_signature(&mut self, n: &mut TsSetterSignature)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_this_type(&mut self, n: &mut TsThisType)
fn visit_mut_ts_this_type(&mut self, n: &mut TsThisType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_this_type_or_ident(&mut self, n: &mut TsThisTypeOrIdent)
fn visit_mut_ts_this_type_or_ident(&mut self, n: &mut TsThisTypeOrIdent)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_tpl_lit_type(&mut self, n: &mut TsTplLitType)
fn visit_mut_ts_tpl_lit_type(&mut self, n: &mut TsTplLitType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_tuple_element(&mut self, n: &mut TsTupleElement)
fn visit_mut_ts_tuple_element(&mut self, n: &mut TsTupleElement)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_ts_tuple_elements(&mut self, n: &mut Vec<TsTupleElement>)
source§fn visit_mut_ts_tuple_type(&mut self, n: &mut TsTupleType)
fn visit_mut_ts_tuple_type(&mut self, n: &mut TsTupleType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type(&mut self, n: &mut TsType)
fn visit_mut_ts_type(&mut self, n: &mut TsType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_alias_decl(&mut self, n: &mut TsTypeAliasDecl)
fn visit_mut_ts_type_alias_decl(&mut self, n: &mut TsTypeAliasDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_ann(&mut self, n: &mut TsTypeAnn)
fn visit_mut_ts_type_ann(&mut self, n: &mut TsTypeAnn)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_assertion(&mut self, n: &mut TsTypeAssertion)
fn visit_mut_ts_type_assertion(&mut self, n: &mut TsTypeAssertion)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_element(&mut self, n: &mut TsTypeElement)
fn visit_mut_ts_type_element(&mut self, n: &mut TsTypeElement)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_ts_type_elements(&mut self, n: &mut Vec<TsTypeElement>)
source§fn visit_mut_ts_type_lit(&mut self, n: &mut TsTypeLit)
fn visit_mut_ts_type_lit(&mut self, n: &mut TsTypeLit)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_operator(&mut self, n: &mut TsTypeOperator)
fn visit_mut_ts_type_operator(&mut self, n: &mut TsTypeOperator)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_operator_op(&mut self, n: &mut TsTypeOperatorOp)
fn visit_mut_ts_type_operator_op(&mut self, n: &mut TsTypeOperatorOp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_param(&mut self, n: &mut TsTypeParam)
fn visit_mut_ts_type_param(&mut self, n: &mut TsTypeParam)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_param_decl(&mut self, n: &mut TsTypeParamDecl)
fn visit_mut_ts_type_param_decl(&mut self, n: &mut TsTypeParamDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_param_instantiation(
&mut self,
n: &mut TsTypeParamInstantiation,
)
fn visit_mut_ts_type_param_instantiation( &mut self, n: &mut TsTypeParamInstantiation, )
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_ts_type_params(&mut self, n: &mut Vec<TsTypeParam>)
source§fn visit_mut_ts_type_predicate(&mut self, n: &mut TsTypePredicate)
fn visit_mut_ts_type_predicate(&mut self, n: &mut TsTypePredicate)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_query(&mut self, n: &mut TsTypeQuery)
fn visit_mut_ts_type_query(&mut self, n: &mut TsTypeQuery)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_query_expr(&mut self, n: &mut TsTypeQueryExpr)
fn visit_mut_ts_type_query_expr(&mut self, n: &mut TsTypeQueryExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_type_ref(&mut self, n: &mut TsTypeRef)
fn visit_mut_ts_type_ref(&mut self, n: &mut TsTypeRef)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_ts_types(&mut self, n: &mut Vec<Box<TsType>>)
source§fn visit_mut_ts_union_or_intersection_type(
&mut self,
n: &mut TsUnionOrIntersectionType,
)
fn visit_mut_ts_union_or_intersection_type( &mut self, n: &mut TsUnionOrIntersectionType, )
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_ts_union_type(&mut self, n: &mut TsUnionType)
fn visit_mut_ts_union_type(&mut self, n: &mut TsUnionType)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_unary_expr(&mut self, n: &mut UnaryExpr)
fn visit_mut_unary_expr(&mut self, n: &mut UnaryExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_unary_op(&mut self, n: &mut UnaryOp)
fn visit_mut_unary_op(&mut self, n: &mut UnaryOp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_update_expr(&mut self, n: &mut UpdateExpr)
fn visit_mut_update_expr(&mut self, n: &mut UpdateExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_update_op(&mut self, n: &mut UpdateOp)
fn visit_mut_update_op(&mut self, n: &mut UpdateOp)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_var_decl(&mut self, n: &mut VarDecl)
fn visit_mut_var_decl(&mut self, n: &mut VarDecl)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_var_decl_kind(&mut self, n: &mut VarDeclKind)
fn visit_mut_var_decl_kind(&mut self, n: &mut VarDeclKind)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_var_decl_or_expr(&mut self, n: &mut VarDeclOrExpr)
fn visit_mut_var_decl_or_expr(&mut self, n: &mut VarDeclOrExpr)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_var_decl_or_pat(&mut self, n: &mut VarDeclOrPat)
fn visit_mut_var_decl_or_pat(&mut self, n: &mut VarDeclOrPat)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_var_declarator(&mut self, n: &mut VarDeclarator)
fn visit_mut_var_declarator(&mut self, n: &mut VarDeclarator)
This method can be overriden to customize the visitor behavior. Read more
fn visit_mut_var_declarators(&mut self, n: &mut Vec<VarDeclarator>)
source§fn visit_mut_while_stmt(&mut self, n: &mut WhileStmt)
fn visit_mut_while_stmt(&mut self, n: &mut WhileStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_with_stmt(&mut self, n: &mut WithStmt)
fn visit_mut_with_stmt(&mut self, n: &mut WithStmt)
This method can be overriden to customize the visitor behavior. Read more
source§fn visit_mut_yield_expr(&mut self, n: &mut YieldExpr)
fn visit_mut_yield_expr(&mut self, n: &mut YieldExpr)
This method can be overriden to customize the visitor behavior. Read more
impl<V> Copy for Optional<V>where
V: Copy,
impl<V> Eq for Optional<V>where
V: Eq,
impl<V> StructuralPartialEq for Optional<V>
Auto Trait Implementations§
impl<V> Freeze for Optional<V>where
V: Freeze,
impl<V> RefUnwindSafe for Optional<V>where
V: RefUnwindSafe,
impl<V> Send for Optional<V>where
V: Send,
impl<V> Sync for Optional<V>where
V: Sync,
impl<V> Unpin for Optional<V>where
V: Unpin,
impl<V> UnwindSafe for Optional<V>where
V: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more