Struct Optional
pub struct Optional<V> {
pub enabled: bool,
pub visitor: V,
}
Available on crate features
__ecma
and __utils
only.Expand description
A visitor which visits node only if enabled
is true.
Fields§
§enabled: bool
§visitor: V
Implementations§
Trait Implementations§
§impl<V> Fold for Optional<V>where
V: Fold,
impl<V> Fold for Optional<V>where
V: Fold,
§fn fold_accessibility(&mut self, node: Accessibility) -> Accessibility
fn fold_accessibility(&mut self, node: Accessibility) -> Accessibility
Visit a node of type
Accessibility
. Read more§fn fold_array_lit(&mut self, node: ArrayLit) -> ArrayLit
fn fold_array_lit(&mut self, node: ArrayLit) -> ArrayLit
Visit a node of type
ArrayLit
. Read more§fn fold_array_pat(&mut self, node: ArrayPat) -> ArrayPat
fn fold_array_pat(&mut self, node: ArrayPat) -> ArrayPat
Visit a node of type
ArrayPat
. Read more§fn fold_arrow_expr(&mut self, node: ArrowExpr) -> ArrowExpr
fn fold_arrow_expr(&mut self, node: ArrowExpr) -> ArrowExpr
Visit a node of type
ArrowExpr
. Read more§fn fold_assign_expr(&mut self, node: AssignExpr) -> AssignExpr
fn fold_assign_expr(&mut self, node: AssignExpr) -> AssignExpr
Visit a node of type
AssignExpr
. Read more§fn fold_assign_op(&mut self, node: AssignOp) -> AssignOp
fn fold_assign_op(&mut self, node: AssignOp) -> AssignOp
Visit a node of type
AssignOp
. Read more§fn fold_assign_pat(&mut self, node: AssignPat) -> AssignPat
fn fold_assign_pat(&mut self, node: AssignPat) -> AssignPat
Visit a node of type
AssignPat
. Read more§fn fold_assign_pat_prop(&mut self, node: AssignPatProp) -> AssignPatProp
fn fold_assign_pat_prop(&mut self, node: AssignPatProp) -> AssignPatProp
Visit a node of type
AssignPatProp
. Read more§fn fold_assign_prop(&mut self, node: AssignProp) -> AssignProp
fn fold_assign_prop(&mut self, node: AssignProp) -> AssignProp
Visit a node of type
AssignProp
. Read more§fn fold_assign_target(&mut self, node: AssignTarget) -> AssignTarget
fn fold_assign_target(&mut self, node: AssignTarget) -> AssignTarget
Visit a node of type
AssignTarget
. Read more§fn fold_assign_target_pat(&mut self, node: AssignTargetPat) -> AssignTargetPat
fn fold_assign_target_pat(&mut self, node: AssignTargetPat) -> AssignTargetPat
Visit a node of type
AssignTargetPat
. Read more§fn fold_auto_accessor(&mut self, node: AutoAccessor) -> AutoAccessor
fn fold_auto_accessor(&mut self, node: AutoAccessor) -> AutoAccessor
Visit a node of type
AutoAccessor
. Read more§fn fold_await_expr(&mut self, node: AwaitExpr) -> AwaitExpr
fn fold_await_expr(&mut self, node: AwaitExpr) -> AwaitExpr
Visit a node of type
AwaitExpr
. Read more§fn fold_big_int(&mut self, node: BigInt) -> BigInt
fn fold_big_int(&mut self, node: BigInt) -> BigInt
Visit a node of type
BigInt
. Read more§fn fold_big_int_value(&mut self, node: BigInt) -> BigInt
fn fold_big_int_value(&mut self, node: BigInt) -> BigInt
Visit a node of type
BigIntValue
. Read more§fn fold_bin_expr(&mut self, node: BinExpr) -> BinExpr
fn fold_bin_expr(&mut self, node: BinExpr) -> BinExpr
Visit a node of type
BinExpr
. Read more§fn fold_binary_op(&mut self, node: BinaryOp) -> BinaryOp
fn fold_binary_op(&mut self, node: BinaryOp) -> BinaryOp
Visit a node of type
BinaryOp
. Read more§fn fold_binding_ident(&mut self, node: BindingIdent) -> BindingIdent
fn fold_binding_ident(&mut self, node: BindingIdent) -> BindingIdent
Visit a node of type
BindingIdent
. Read more§fn fold_block_stmt(&mut self, node: BlockStmt) -> BlockStmt
fn fold_block_stmt(&mut self, node: BlockStmt) -> BlockStmt
Visit a node of type
BlockStmt
. Read more§fn fold_block_stmt_or_expr(&mut self, node: BlockStmtOrExpr) -> BlockStmtOrExpr
fn fold_block_stmt_or_expr(&mut self, node: BlockStmtOrExpr) -> BlockStmtOrExpr
Visit a node of type
BlockStmtOrExpr
. Read more§fn fold_break_stmt(&mut self, node: BreakStmt) -> BreakStmt
fn fold_break_stmt(&mut self, node: BreakStmt) -> BreakStmt
Visit a node of type
BreakStmt
. Read more§fn fold_call_expr(&mut self, node: CallExpr) -> CallExpr
fn fold_call_expr(&mut self, node: CallExpr) -> CallExpr
Visit a node of type
CallExpr
. Read more§fn fold_callee(&mut self, node: Callee) -> Callee
fn fold_callee(&mut self, node: Callee) -> Callee
Visit a node of type
Callee
. Read more§fn fold_catch_clause(&mut self, node: CatchClause) -> CatchClause
fn fold_catch_clause(&mut self, node: CatchClause) -> CatchClause
Visit a node of type
CatchClause
. Read more§fn fold_class(&mut self, node: Class) -> Class
fn fold_class(&mut self, node: Class) -> Class
Visit a node of type
Class
. Read more§fn fold_class_decl(&mut self, node: ClassDecl) -> ClassDecl
fn fold_class_decl(&mut self, node: ClassDecl) -> ClassDecl
Visit a node of type
ClassDecl
. Read more§fn fold_class_expr(&mut self, node: ClassExpr) -> ClassExpr
fn fold_class_expr(&mut self, node: ClassExpr) -> ClassExpr
Visit a node of type
ClassExpr
. Read more§fn fold_class_member(&mut self, node: ClassMember) -> ClassMember
fn fold_class_member(&mut self, node: ClassMember) -> ClassMember
Visit a node of type
ClassMember
. Read more§fn fold_class_members(&mut self, node: Vec<ClassMember>) -> Vec<ClassMember>
fn fold_class_members(&mut self, node: Vec<ClassMember>) -> Vec<ClassMember>
Visit a node of type
Vec < ClassMember >
. Read more§fn fold_class_method(&mut self, node: ClassMethod) -> ClassMethod
fn fold_class_method(&mut self, node: ClassMethod) -> ClassMethod
Visit a node of type
ClassMethod
. Read more§fn fold_class_prop(&mut self, node: ClassProp) -> ClassProp
fn fold_class_prop(&mut self, node: ClassProp) -> ClassProp
Visit a node of type
ClassProp
. Read more§fn fold_computed_prop_name(
&mut self,
node: ComputedPropName,
) -> ComputedPropName
fn fold_computed_prop_name( &mut self, node: ComputedPropName, ) -> ComputedPropName
Visit a node of type
ComputedPropName
. Read more§fn fold_cond_expr(&mut self, node: CondExpr) -> CondExpr
fn fold_cond_expr(&mut self, node: CondExpr) -> CondExpr
Visit a node of type
CondExpr
. Read more§fn fold_constructor(&mut self, node: Constructor) -> Constructor
fn fold_constructor(&mut self, node: Constructor) -> Constructor
Visit a node of type
Constructor
. Read more§fn fold_continue_stmt(&mut self, node: ContinueStmt) -> ContinueStmt
fn fold_continue_stmt(&mut self, node: ContinueStmt) -> ContinueStmt
Visit a node of type
ContinueStmt
. Read more§fn fold_debugger_stmt(&mut self, node: DebuggerStmt) -> DebuggerStmt
fn fold_debugger_stmt(&mut self, node: DebuggerStmt) -> DebuggerStmt
Visit a node of type
DebuggerStmt
. Read more§fn fold_decorator(&mut self, node: Decorator) -> Decorator
fn fold_decorator(&mut self, node: Decorator) -> Decorator
Visit a node of type
Decorator
. Read more§fn fold_decorators(&mut self, node: Vec<Decorator>) -> Vec<Decorator>
fn fold_decorators(&mut self, node: Vec<Decorator>) -> Vec<Decorator>
Visit a node of type
Vec < Decorator >
. Read more§fn fold_default_decl(&mut self, node: DefaultDecl) -> DefaultDecl
fn fold_default_decl(&mut self, node: DefaultDecl) -> DefaultDecl
Visit a node of type
DefaultDecl
. Read more§fn fold_do_while_stmt(&mut self, node: DoWhileStmt) -> DoWhileStmt
fn fold_do_while_stmt(&mut self, node: DoWhileStmt) -> DoWhileStmt
Visit a node of type
DoWhileStmt
. Read more§fn fold_empty_stmt(&mut self, node: EmptyStmt) -> EmptyStmt
fn fold_empty_stmt(&mut self, node: EmptyStmt) -> EmptyStmt
Visit a node of type
EmptyStmt
. Read more§fn fold_export_all(&mut self, node: ExportAll) -> ExportAll
fn fold_export_all(&mut self, node: ExportAll) -> ExportAll
Visit a node of type
ExportAll
. Read more§fn fold_export_decl(&mut self, node: ExportDecl) -> ExportDecl
fn fold_export_decl(&mut self, node: ExportDecl) -> ExportDecl
Visit a node of type
ExportDecl
. Read more§fn fold_export_default_decl(
&mut self,
node: ExportDefaultDecl,
) -> ExportDefaultDecl
fn fold_export_default_decl( &mut self, node: ExportDefaultDecl, ) -> ExportDefaultDecl
Visit a node of type
ExportDefaultDecl
. Read more§fn fold_export_default_expr(
&mut self,
node: ExportDefaultExpr,
) -> ExportDefaultExpr
fn fold_export_default_expr( &mut self, node: ExportDefaultExpr, ) -> ExportDefaultExpr
Visit a node of type
ExportDefaultExpr
. Read more§fn fold_export_default_specifier(
&mut self,
node: ExportDefaultSpecifier,
) -> ExportDefaultSpecifier
fn fold_export_default_specifier( &mut self, node: ExportDefaultSpecifier, ) -> ExportDefaultSpecifier
Visit a node of type
ExportDefaultSpecifier
. Read more§fn fold_export_named_specifier(
&mut self,
node: ExportNamedSpecifier,
) -> ExportNamedSpecifier
fn fold_export_named_specifier( &mut self, node: ExportNamedSpecifier, ) -> ExportNamedSpecifier
Visit a node of type
ExportNamedSpecifier
. Read more§fn fold_export_namespace_specifier(
&mut self,
node: ExportNamespaceSpecifier,
) -> ExportNamespaceSpecifier
fn fold_export_namespace_specifier( &mut self, node: ExportNamespaceSpecifier, ) -> ExportNamespaceSpecifier
Visit a node of type
ExportNamespaceSpecifier
. Read more§fn fold_export_specifier(&mut self, node: ExportSpecifier) -> ExportSpecifier
fn fold_export_specifier(&mut self, node: ExportSpecifier) -> ExportSpecifier
Visit a node of type
ExportSpecifier
. Read more§fn fold_export_specifiers(
&mut self,
node: Vec<ExportSpecifier>,
) -> Vec<ExportSpecifier>
fn fold_export_specifiers( &mut self, node: Vec<ExportSpecifier>, ) -> Vec<ExportSpecifier>
Visit a node of type
Vec < ExportSpecifier >
. Read more§fn fold_expr_or_spread(&mut self, node: ExprOrSpread) -> ExprOrSpread
fn fold_expr_or_spread(&mut self, node: ExprOrSpread) -> ExprOrSpread
Visit a node of type
ExprOrSpread
. Read more§fn fold_expr_or_spreads(&mut self, node: Vec<ExprOrSpread>) -> Vec<ExprOrSpread>
fn fold_expr_or_spreads(&mut self, node: Vec<ExprOrSpread>) -> Vec<ExprOrSpread>
Visit a node of type
Vec < ExprOrSpread >
. Read more§fn fold_expr_stmt(&mut self, node: ExprStmt) -> ExprStmt
fn fold_expr_stmt(&mut self, node: ExprStmt) -> ExprStmt
Visit a node of type
ExprStmt
. Read more§fn fold_exprs(&mut self, node: Vec<Box<Expr>>) -> Vec<Box<Expr>>
fn fold_exprs(&mut self, node: Vec<Box<Expr>>) -> Vec<Box<Expr>>
Visit a node of type
Vec < Box < Expr > >
. Read more§fn fold_fn_decl(&mut self, node: FnDecl) -> FnDecl
fn fold_fn_decl(&mut self, node: FnDecl) -> FnDecl
Visit a node of type
FnDecl
. Read more§fn fold_fn_expr(&mut self, node: FnExpr) -> FnExpr
fn fold_fn_expr(&mut self, node: FnExpr) -> FnExpr
Visit a node of type
FnExpr
. Read more§fn fold_for_head(&mut self, node: ForHead) -> ForHead
fn fold_for_head(&mut self, node: ForHead) -> ForHead
Visit a node of type
ForHead
. Read more§fn fold_for_in_stmt(&mut self, node: ForInStmt) -> ForInStmt
fn fold_for_in_stmt(&mut self, node: ForInStmt) -> ForInStmt
Visit a node of type
ForInStmt
. Read more§fn fold_for_of_stmt(&mut self, node: ForOfStmt) -> ForOfStmt
fn fold_for_of_stmt(&mut self, node: ForOfStmt) -> ForOfStmt
Visit a node of type
ForOfStmt
. Read more§fn fold_for_stmt(&mut self, node: ForStmt) -> ForStmt
fn fold_for_stmt(&mut self, node: ForStmt) -> ForStmt
Visit a node of type
ForStmt
. Read more§fn fold_function(&mut self, node: Function) -> Function
fn fold_function(&mut self, node: Function) -> Function
Visit a node of type
Function
. Read more§fn fold_getter_prop(&mut self, node: GetterProp) -> GetterProp
fn fold_getter_prop(&mut self, node: GetterProp) -> GetterProp
Visit a node of type
GetterProp
. Read more§fn fold_ident(&mut self, node: Ident) -> Ident
fn fold_ident(&mut self, node: Ident) -> Ident
Visit a node of type
Ident
. Read more§fn fold_ident_name(&mut self, node: IdentName) -> IdentName
fn fold_ident_name(&mut self, node: IdentName) -> IdentName
Visit a node of type
IdentName
. Read more§fn fold_if_stmt(&mut self, node: IfStmt) -> IfStmt
fn fold_if_stmt(&mut self, node: IfStmt) -> IfStmt
Visit a node of type
IfStmt
. Read more§fn fold_import(&mut self, node: Import) -> Import
fn fold_import(&mut self, node: Import) -> Import
Visit a node of type
Import
. Read more§fn fold_import_decl(&mut self, node: ImportDecl) -> ImportDecl
fn fold_import_decl(&mut self, node: ImportDecl) -> ImportDecl
Visit a node of type
ImportDecl
. Read more§fn fold_import_default_specifier(
&mut self,
node: ImportDefaultSpecifier,
) -> ImportDefaultSpecifier
fn fold_import_default_specifier( &mut self, node: ImportDefaultSpecifier, ) -> ImportDefaultSpecifier
Visit a node of type
ImportDefaultSpecifier
. Read more§fn fold_import_named_specifier(
&mut self,
node: ImportNamedSpecifier,
) -> ImportNamedSpecifier
fn fold_import_named_specifier( &mut self, node: ImportNamedSpecifier, ) -> ImportNamedSpecifier
Visit a node of type
ImportNamedSpecifier
. Read more§fn fold_import_phase(&mut self, node: ImportPhase) -> ImportPhase
fn fold_import_phase(&mut self, node: ImportPhase) -> ImportPhase
Visit a node of type
ImportPhase
. Read more§fn fold_import_specifier(&mut self, node: ImportSpecifier) -> ImportSpecifier
fn fold_import_specifier(&mut self, node: ImportSpecifier) -> ImportSpecifier
Visit a node of type
ImportSpecifier
. Read more§fn fold_import_specifiers(
&mut self,
node: Vec<ImportSpecifier>,
) -> Vec<ImportSpecifier>
fn fold_import_specifiers( &mut self, node: Vec<ImportSpecifier>, ) -> Vec<ImportSpecifier>
Visit a node of type
Vec < ImportSpecifier >
. Read more§fn fold_import_star_as_specifier(
&mut self,
node: ImportStarAsSpecifier,
) -> ImportStarAsSpecifier
fn fold_import_star_as_specifier( &mut self, node: ImportStarAsSpecifier, ) -> ImportStarAsSpecifier
Visit a node of type
ImportStarAsSpecifier
. Read more§fn fold_import_with(&mut self, node: ImportWith) -> ImportWith
fn fold_import_with(&mut self, node: ImportWith) -> ImportWith
Visit a node of type
ImportWith
. Read more§fn fold_import_with_item(&mut self, node: ImportWithItem) -> ImportWithItem
fn fold_import_with_item(&mut self, node: ImportWithItem) -> ImportWithItem
Visit a node of type
ImportWithItem
. Read more§fn fold_import_with_items(
&mut self,
node: Vec<ImportWithItem>,
) -> Vec<ImportWithItem>
fn fold_import_with_items( &mut self, node: Vec<ImportWithItem>, ) -> Vec<ImportWithItem>
Visit a node of type
Vec < ImportWithItem >
. Read more§fn fold_invalid(&mut self, node: Invalid) -> Invalid
fn fold_invalid(&mut self, node: Invalid) -> Invalid
Visit a node of type
Invalid
. Read more§fn fold_jsx_attr(&mut self, node: JSXAttr) -> JSXAttr
fn fold_jsx_attr(&mut self, node: JSXAttr) -> JSXAttr
Visit a node of type
JSXAttr
. Read more§fn fold_jsx_attr_name(&mut self, node: JSXAttrName) -> JSXAttrName
fn fold_jsx_attr_name(&mut self, node: JSXAttrName) -> JSXAttrName
Visit a node of type
JSXAttrName
. Read more§fn fold_jsx_attr_or_spread(&mut self, node: JSXAttrOrSpread) -> JSXAttrOrSpread
fn fold_jsx_attr_or_spread(&mut self, node: JSXAttrOrSpread) -> JSXAttrOrSpread
Visit a node of type
JSXAttrOrSpread
. Read more§fn fold_jsx_attr_or_spreads(
&mut self,
node: Vec<JSXAttrOrSpread>,
) -> Vec<JSXAttrOrSpread>
fn fold_jsx_attr_or_spreads( &mut self, node: Vec<JSXAttrOrSpread>, ) -> Vec<JSXAttrOrSpread>
Visit a node of type
Vec < JSXAttrOrSpread >
. Read more§fn fold_jsx_attr_value(&mut self, node: JSXAttrValue) -> JSXAttrValue
fn fold_jsx_attr_value(&mut self, node: JSXAttrValue) -> JSXAttrValue
Visit a node of type
JSXAttrValue
. Read more§fn fold_jsx_closing_element(
&mut self,
node: JSXClosingElement,
) -> JSXClosingElement
fn fold_jsx_closing_element( &mut self, node: JSXClosingElement, ) -> JSXClosingElement
Visit a node of type
JSXClosingElement
. Read more§fn fold_jsx_closing_fragment(
&mut self,
node: JSXClosingFragment,
) -> JSXClosingFragment
fn fold_jsx_closing_fragment( &mut self, node: JSXClosingFragment, ) -> JSXClosingFragment
Visit a node of type
JSXClosingFragment
. Read more§fn fold_jsx_element(&mut self, node: JSXElement) -> JSXElement
fn fold_jsx_element(&mut self, node: JSXElement) -> JSXElement
Visit a node of type
JSXElement
. Read more§fn fold_jsx_element_child(&mut self, node: JSXElementChild) -> JSXElementChild
fn fold_jsx_element_child(&mut self, node: JSXElementChild) -> JSXElementChild
Visit a node of type
JSXElementChild
. Read more§fn fold_jsx_element_childs(
&mut self,
node: Vec<JSXElementChild>,
) -> Vec<JSXElementChild>
fn fold_jsx_element_childs( &mut self, node: Vec<JSXElementChild>, ) -> Vec<JSXElementChild>
Visit a node of type
Vec < JSXElementChild >
. Read more§fn fold_jsx_element_name(&mut self, node: JSXElementName) -> JSXElementName
fn fold_jsx_element_name(&mut self, node: JSXElementName) -> JSXElementName
Visit a node of type
JSXElementName
. Read more§fn fold_jsx_empty_expr(&mut self, node: JSXEmptyExpr) -> JSXEmptyExpr
fn fold_jsx_empty_expr(&mut self, node: JSXEmptyExpr) -> JSXEmptyExpr
Visit a node of type
JSXEmptyExpr
. Read more§fn fold_jsx_expr(&mut self, node: JSXExpr) -> JSXExpr
fn fold_jsx_expr(&mut self, node: JSXExpr) -> JSXExpr
Visit a node of type
JSXExpr
. Read more§fn fold_jsx_expr_container(
&mut self,
node: JSXExprContainer,
) -> JSXExprContainer
fn fold_jsx_expr_container( &mut self, node: JSXExprContainer, ) -> JSXExprContainer
Visit a node of type
JSXExprContainer
. Read more§fn fold_jsx_fragment(&mut self, node: JSXFragment) -> JSXFragment
fn fold_jsx_fragment(&mut self, node: JSXFragment) -> JSXFragment
Visit a node of type
JSXFragment
. Read more§fn fold_jsx_member_expr(&mut self, node: JSXMemberExpr) -> JSXMemberExpr
fn fold_jsx_member_expr(&mut self, node: JSXMemberExpr) -> JSXMemberExpr
Visit a node of type
JSXMemberExpr
. Read more§fn fold_jsx_namespaced_name(
&mut self,
node: JSXNamespacedName,
) -> JSXNamespacedName
fn fold_jsx_namespaced_name( &mut self, node: JSXNamespacedName, ) -> JSXNamespacedName
Visit a node of type
JSXNamespacedName
. Read more§fn fold_jsx_object(&mut self, node: JSXObject) -> JSXObject
fn fold_jsx_object(&mut self, node: JSXObject) -> JSXObject
Visit a node of type
JSXObject
. Read more§fn fold_jsx_opening_element(
&mut self,
node: JSXOpeningElement,
) -> JSXOpeningElement
fn fold_jsx_opening_element( &mut self, node: JSXOpeningElement, ) -> JSXOpeningElement
Visit a node of type
JSXOpeningElement
. Read more§fn fold_jsx_opening_fragment(
&mut self,
node: JSXOpeningFragment,
) -> JSXOpeningFragment
fn fold_jsx_opening_fragment( &mut self, node: JSXOpeningFragment, ) -> JSXOpeningFragment
Visit a node of type
JSXOpeningFragment
. Read more§fn fold_jsx_spread_child(&mut self, node: JSXSpreadChild) -> JSXSpreadChild
fn fold_jsx_spread_child(&mut self, node: JSXSpreadChild) -> JSXSpreadChild
Visit a node of type
JSXSpreadChild
. Read more§fn fold_jsx_text(&mut self, node: JSXText) -> JSXText
fn fold_jsx_text(&mut self, node: JSXText) -> JSXText
Visit a node of type
JSXText
. Read more§fn fold_key_value_pat_prop(&mut self, node: KeyValuePatProp) -> KeyValuePatProp
fn fold_key_value_pat_prop(&mut self, node: KeyValuePatProp) -> KeyValuePatProp
Visit a node of type
KeyValuePatProp
. Read more§fn fold_key_value_prop(&mut self, node: KeyValueProp) -> KeyValueProp
fn fold_key_value_prop(&mut self, node: KeyValueProp) -> KeyValueProp
Visit a node of type
KeyValueProp
. Read more§fn fold_labeled_stmt(&mut self, node: LabeledStmt) -> LabeledStmt
fn fold_labeled_stmt(&mut self, node: LabeledStmt) -> LabeledStmt
Visit a node of type
LabeledStmt
. Read more§fn fold_member_expr(&mut self, node: MemberExpr) -> MemberExpr
fn fold_member_expr(&mut self, node: MemberExpr) -> MemberExpr
Visit a node of type
MemberExpr
. Read more§fn fold_member_prop(&mut self, node: MemberProp) -> MemberProp
fn fold_member_prop(&mut self, node: MemberProp) -> MemberProp
Visit a node of type
MemberProp
. Read more§fn fold_meta_prop_expr(&mut self, node: MetaPropExpr) -> MetaPropExpr
fn fold_meta_prop_expr(&mut self, node: MetaPropExpr) -> MetaPropExpr
Visit a node of type
MetaPropExpr
. Read more§fn fold_meta_prop_kind(&mut self, node: MetaPropKind) -> MetaPropKind
fn fold_meta_prop_kind(&mut self, node: MetaPropKind) -> MetaPropKind
Visit a node of type
MetaPropKind
. Read more§fn fold_method_kind(&mut self, node: MethodKind) -> MethodKind
fn fold_method_kind(&mut self, node: MethodKind) -> MethodKind
Visit a node of type
MethodKind
. Read more§fn fold_method_prop(&mut self, node: MethodProp) -> MethodProp
fn fold_method_prop(&mut self, node: MethodProp) -> MethodProp
Visit a node of type
MethodProp
. Read more§fn fold_module(&mut self, node: Module) -> Module
fn fold_module(&mut self, node: Module) -> Module
Visit a node of type
Module
. Read more§fn fold_module_decl(&mut self, node: ModuleDecl) -> ModuleDecl
fn fold_module_decl(&mut self, node: ModuleDecl) -> ModuleDecl
Visit a node of type
ModuleDecl
. Read more§fn fold_module_export_name(
&mut self,
node: ModuleExportName,
) -> ModuleExportName
fn fold_module_export_name( &mut self, node: ModuleExportName, ) -> ModuleExportName
Visit a node of type
ModuleExportName
. Read more§fn fold_module_item(&mut self, node: ModuleItem) -> ModuleItem
fn fold_module_item(&mut self, node: ModuleItem) -> ModuleItem
Visit a node of type
ModuleItem
. Read more§fn fold_module_items(&mut self, node: Vec<ModuleItem>) -> Vec<ModuleItem>
fn fold_module_items(&mut self, node: Vec<ModuleItem>) -> Vec<ModuleItem>
Visit a node of type
Vec < ModuleItem >
. Read more§fn fold_named_export(&mut self, node: NamedExport) -> NamedExport
fn fold_named_export(&mut self, node: NamedExport) -> NamedExport
Visit a node of type
NamedExport
. Read more§fn fold_new_expr(&mut self, node: NewExpr) -> NewExpr
fn fold_new_expr(&mut self, node: NewExpr) -> NewExpr
Visit a node of type
NewExpr
. Read more§fn fold_number(&mut self, node: Number) -> Number
fn fold_number(&mut self, node: Number) -> Number
Visit a node of type
Number
. Read more§fn fold_object_lit(&mut self, node: ObjectLit) -> ObjectLit
fn fold_object_lit(&mut self, node: ObjectLit) -> ObjectLit
Visit a node of type
ObjectLit
. Read more§fn fold_object_pat(&mut self, node: ObjectPat) -> ObjectPat
fn fold_object_pat(&mut self, node: ObjectPat) -> ObjectPat
Visit a node of type
ObjectPat
. Read more§fn fold_object_pat_prop(&mut self, node: ObjectPatProp) -> ObjectPatProp
fn fold_object_pat_prop(&mut self, node: ObjectPatProp) -> ObjectPatProp
Visit a node of type
ObjectPatProp
. Read more§fn fold_object_pat_props(
&mut self,
node: Vec<ObjectPatProp>,
) -> Vec<ObjectPatProp>
fn fold_object_pat_props( &mut self, node: Vec<ObjectPatProp>, ) -> Vec<ObjectPatProp>
Visit a node of type
Vec < ObjectPatProp >
. Read more§fn fold_opt_accessibility(
&mut self,
node: Option<Accessibility>,
) -> Option<Accessibility>
fn fold_opt_accessibility( &mut self, node: Option<Accessibility>, ) -> Option<Accessibility>
Visit a node of type
Option < Accessibility >
. Read more§fn fold_opt_atom(&mut self, node: Option<Atom>) -> Option<Atom>
fn fold_opt_atom(&mut self, node: Option<Atom>) -> Option<Atom>
Visit a node of type
Option < swc_atoms :: Atom >
. Read more§fn fold_opt_block_stmt(&mut self, node: Option<BlockStmt>) -> Option<BlockStmt>
fn fold_opt_block_stmt(&mut self, node: Option<BlockStmt>) -> Option<BlockStmt>
Visit a node of type
Option < BlockStmt >
. Read more§fn fold_opt_call(&mut self, node: OptCall) -> OptCall
fn fold_opt_call(&mut self, node: OptCall) -> OptCall
Visit a node of type
OptCall
. Read more§fn fold_opt_catch_clause(
&mut self,
node: Option<CatchClause>,
) -> Option<CatchClause>
fn fold_opt_catch_clause( &mut self, node: Option<CatchClause>, ) -> Option<CatchClause>
Visit a node of type
Option < CatchClause >
. Read more§fn fold_opt_chain_base(&mut self, node: OptChainBase) -> OptChainBase
fn fold_opt_chain_base(&mut self, node: OptChainBase) -> OptChainBase
Visit a node of type
OptChainBase
. Read more§fn fold_opt_chain_expr(&mut self, node: OptChainExpr) -> OptChainExpr
fn fold_opt_chain_expr(&mut self, node: OptChainExpr) -> OptChainExpr
Visit a node of type
OptChainExpr
. Read more§fn fold_opt_expr(&mut self, node: Option<Box<Expr>>) -> Option<Box<Expr>>
fn fold_opt_expr(&mut self, node: Option<Box<Expr>>) -> Option<Box<Expr>>
Visit a node of type
Option < Box < Expr > >
. Read more§fn fold_opt_expr_or_spread(
&mut self,
node: Option<ExprOrSpread>,
) -> Option<ExprOrSpread>
fn fold_opt_expr_or_spread( &mut self, node: Option<ExprOrSpread>, ) -> Option<ExprOrSpread>
Visit a node of type
Option < ExprOrSpread >
. Read more§fn fold_opt_expr_or_spreads(
&mut self,
node: Option<Vec<ExprOrSpread>>,
) -> Option<Vec<ExprOrSpread>>
fn fold_opt_expr_or_spreads( &mut self, node: Option<Vec<ExprOrSpread>>, ) -> Option<Vec<ExprOrSpread>>
Visit a node of type
Option < Vec < ExprOrSpread > >
. Read more§fn fold_opt_ident(&mut self, node: Option<Ident>) -> Option<Ident>
fn fold_opt_ident(&mut self, node: Option<Ident>) -> Option<Ident>
Visit a node of type
Option < Ident >
. Read more§fn fold_opt_jsx_attr_value(
&mut self,
node: Option<JSXAttrValue>,
) -> Option<JSXAttrValue>
fn fold_opt_jsx_attr_value( &mut self, node: Option<JSXAttrValue>, ) -> Option<JSXAttrValue>
Visit a node of type
Option < JSXAttrValue >
. Read more§fn fold_opt_jsx_closing_element(
&mut self,
node: Option<JSXClosingElement>,
) -> Option<JSXClosingElement>
fn fold_opt_jsx_closing_element( &mut self, node: Option<JSXClosingElement>, ) -> Option<JSXClosingElement>
Visit a node of type
Option < JSXClosingElement >
. Read more§fn fold_opt_module_export_name(
&mut self,
node: Option<ModuleExportName>,
) -> Option<ModuleExportName>
fn fold_opt_module_export_name( &mut self, node: Option<ModuleExportName>, ) -> Option<ModuleExportName>
Visit a node of type
Option < ModuleExportName >
. Read more§fn fold_opt_object_lit(
&mut self,
node: Option<Box<ObjectLit>>,
) -> Option<Box<ObjectLit>>
fn fold_opt_object_lit( &mut self, node: Option<Box<ObjectLit>>, ) -> Option<Box<ObjectLit>>
Visit a node of type
Option < Box < ObjectLit > >
. Read more§fn fold_opt_pat(&mut self, node: Option<Pat>) -> Option<Pat>
fn fold_opt_pat(&mut self, node: Option<Pat>) -> Option<Pat>
Visit a node of type
Option < Pat >
. Read more§fn fold_opt_span(&mut self, node: Option<Span>) -> Option<Span>
fn fold_opt_span(&mut self, node: Option<Span>) -> Option<Span>
Visit a node of type
Option < swc_common :: Span >
. Read more§fn fold_opt_stmt(&mut self, node: Option<Box<Stmt>>) -> Option<Box<Stmt>>
fn fold_opt_stmt(&mut self, node: Option<Box<Stmt>>) -> Option<Box<Stmt>>
Visit a node of type
Option < Box < Stmt > >
. Read more§fn fold_opt_str(&mut self, node: Option<Box<Str>>) -> Option<Box<Str>>
fn fold_opt_str(&mut self, node: Option<Box<Str>>) -> Option<Box<Str>>
Visit a node of type
Option < Box < Str > >
. Read more§fn fold_opt_true_plus_minus(
&mut self,
node: Option<TruePlusMinus>,
) -> Option<TruePlusMinus>
fn fold_opt_true_plus_minus( &mut self, node: Option<TruePlusMinus>, ) -> Option<TruePlusMinus>
Visit a node of type
Option < TruePlusMinus >
. Read more§fn fold_opt_ts_entity_name(
&mut self,
node: Option<TsEntityName>,
) -> Option<TsEntityName>
fn fold_opt_ts_entity_name( &mut self, node: Option<TsEntityName>, ) -> Option<TsEntityName>
Visit a node of type
Option < TsEntityName >
. Read more§fn fold_opt_ts_namespace_body(
&mut self,
node: Option<TsNamespaceBody>,
) -> Option<TsNamespaceBody>
fn fold_opt_ts_namespace_body( &mut self, node: Option<TsNamespaceBody>, ) -> Option<TsNamespaceBody>
Visit a node of type
Option < TsNamespaceBody >
. Read more§fn fold_opt_ts_type(&mut self, node: Option<Box<TsType>>) -> Option<Box<TsType>>
fn fold_opt_ts_type(&mut self, node: Option<Box<TsType>>) -> Option<Box<TsType>>
Visit a node of type
Option < Box < TsType > >
. Read more§fn fold_opt_ts_type_ann(
&mut self,
node: Option<Box<TsTypeAnn>>,
) -> Option<Box<TsTypeAnn>>
fn fold_opt_ts_type_ann( &mut self, node: Option<Box<TsTypeAnn>>, ) -> Option<Box<TsTypeAnn>>
Visit a node of type
Option < Box < TsTypeAnn > >
. Read more§fn fold_opt_ts_type_param_decl(
&mut self,
node: Option<Box<TsTypeParamDecl>>,
) -> Option<Box<TsTypeParamDecl>>
fn fold_opt_ts_type_param_decl( &mut self, node: Option<Box<TsTypeParamDecl>>, ) -> Option<Box<TsTypeParamDecl>>
Visit a node of type
Option < Box < TsTypeParamDecl > >
. Read more§fn fold_opt_ts_type_param_instantiation(
&mut self,
node: Option<Box<TsTypeParamInstantiation>>,
) -> Option<Box<TsTypeParamInstantiation>>
fn fold_opt_ts_type_param_instantiation( &mut self, node: Option<Box<TsTypeParamInstantiation>>, ) -> Option<Box<TsTypeParamInstantiation>>
Visit a node of type
Option < Box < TsTypeParamInstantiation > >
. Read more§fn fold_opt_var_decl_or_expr(
&mut self,
node: Option<VarDeclOrExpr>,
) -> Option<VarDeclOrExpr>
fn fold_opt_var_decl_or_expr( &mut self, node: Option<VarDeclOrExpr>, ) -> Option<VarDeclOrExpr>
Visit a node of type
Option < VarDeclOrExpr >
. Read more§fn fold_opt_vec_expr_or_spreads(
&mut self,
node: Vec<Option<ExprOrSpread>>,
) -> Vec<Option<ExprOrSpread>>
fn fold_opt_vec_expr_or_spreads( &mut self, node: Vec<Option<ExprOrSpread>>, ) -> Vec<Option<ExprOrSpread>>
Visit a node of type
Vec < Option < ExprOrSpread > >
. Read more§fn fold_opt_vec_pats(&mut self, node: Vec<Option<Pat>>) -> Vec<Option<Pat>>
fn fold_opt_vec_pats(&mut self, node: Vec<Option<Pat>>) -> Vec<Option<Pat>>
Visit a node of type
Vec < Option < Pat > >
. Read more§fn fold_param(&mut self, node: Param) -> Param
fn fold_param(&mut self, node: Param) -> Param
Visit a node of type
Param
. Read more§fn fold_param_or_ts_param_prop(
&mut self,
node: ParamOrTsParamProp,
) -> ParamOrTsParamProp
fn fold_param_or_ts_param_prop( &mut self, node: ParamOrTsParamProp, ) -> ParamOrTsParamProp
Visit a node of type
ParamOrTsParamProp
. Read more§fn fold_param_or_ts_param_props(
&mut self,
node: Vec<ParamOrTsParamProp>,
) -> Vec<ParamOrTsParamProp>
fn fold_param_or_ts_param_props( &mut self, node: Vec<ParamOrTsParamProp>, ) -> Vec<ParamOrTsParamProp>
Visit a node of type
Vec < ParamOrTsParamProp >
. Read more§fn fold_params(&mut self, node: Vec<Param>) -> Vec<Param>
fn fold_params(&mut self, node: Vec<Param>) -> Vec<Param>
Visit a node of type
Vec < Param >
. Read more§fn fold_paren_expr(&mut self, node: ParenExpr) -> ParenExpr
fn fold_paren_expr(&mut self, node: ParenExpr) -> ParenExpr
Visit a node of type
ParenExpr
. Read more§fn fold_private_method(&mut self, node: PrivateMethod) -> PrivateMethod
fn fold_private_method(&mut self, node: PrivateMethod) -> PrivateMethod
Visit a node of type
PrivateMethod
. Read more§fn fold_private_name(&mut self, node: PrivateName) -> PrivateName
fn fold_private_name(&mut self, node: PrivateName) -> PrivateName
Visit a node of type
PrivateName
. Read more§fn fold_private_prop(&mut self, node: PrivateProp) -> PrivateProp
fn fold_private_prop(&mut self, node: PrivateProp) -> PrivateProp
Visit a node of type
PrivateProp
. Read more§fn fold_program(&mut self, node: Program) -> Program
fn fold_program(&mut self, node: Program) -> Program
Visit a node of type
Program
. Read more§fn fold_prop_name(&mut self, node: PropName) -> PropName
fn fold_prop_name(&mut self, node: PropName) -> PropName
Visit a node of type
PropName
. Read more§fn fold_prop_or_spread(&mut self, node: PropOrSpread) -> PropOrSpread
fn fold_prop_or_spread(&mut self, node: PropOrSpread) -> PropOrSpread
Visit a node of type
PropOrSpread
. Read more§fn fold_prop_or_spreads(&mut self, node: Vec<PropOrSpread>) -> Vec<PropOrSpread>
fn fold_prop_or_spreads(&mut self, node: Vec<PropOrSpread>) -> Vec<PropOrSpread>
Visit a node of type
Vec < PropOrSpread >
. Read more§fn fold_regex(&mut self, node: Regex) -> Regex
fn fold_regex(&mut self, node: Regex) -> Regex
Visit a node of type
Regex
. Read more§fn fold_rest_pat(&mut self, node: RestPat) -> RestPat
fn fold_rest_pat(&mut self, node: RestPat) -> RestPat
Visit a node of type
RestPat
. Read more§fn fold_return_stmt(&mut self, node: ReturnStmt) -> ReturnStmt
fn fold_return_stmt(&mut self, node: ReturnStmt) -> ReturnStmt
Visit a node of type
ReturnStmt
. Read more§fn fold_script(&mut self, node: Script) -> Script
fn fold_script(&mut self, node: Script) -> Script
Visit a node of type
Script
. Read more§fn fold_seq_expr(&mut self, node: SeqExpr) -> SeqExpr
fn fold_seq_expr(&mut self, node: SeqExpr) -> SeqExpr
Visit a node of type
SeqExpr
. Read more§fn fold_setter_prop(&mut self, node: SetterProp) -> SetterProp
fn fold_setter_prop(&mut self, node: SetterProp) -> SetterProp
Visit a node of type
SetterProp
. Read more§fn fold_simple_assign_target(
&mut self,
node: SimpleAssignTarget,
) -> SimpleAssignTarget
fn fold_simple_assign_target( &mut self, node: SimpleAssignTarget, ) -> SimpleAssignTarget
Visit a node of type
SimpleAssignTarget
. Read more§fn fold_spread_element(&mut self, node: SpreadElement) -> SpreadElement
fn fold_spread_element(&mut self, node: SpreadElement) -> SpreadElement
Visit a node of type
SpreadElement
. Read more§fn fold_static_block(&mut self, node: StaticBlock) -> StaticBlock
fn fold_static_block(&mut self, node: StaticBlock) -> StaticBlock
Visit a node of type
StaticBlock
. Read more§fn fold_super(&mut self, node: Super) -> Super
fn fold_super(&mut self, node: Super) -> Super
Visit a node of type
Super
. Read more§fn fold_super_prop(&mut self, node: SuperProp) -> SuperProp
fn fold_super_prop(&mut self, node: SuperProp) -> SuperProp
Visit a node of type
SuperProp
. Read more§fn fold_super_prop_expr(&mut self, node: SuperPropExpr) -> SuperPropExpr
fn fold_super_prop_expr(&mut self, node: SuperPropExpr) -> SuperPropExpr
Visit a node of type
SuperPropExpr
. Read more§fn fold_switch_case(&mut self, node: SwitchCase) -> SwitchCase
fn fold_switch_case(&mut self, node: SwitchCase) -> SwitchCase
Visit a node of type
SwitchCase
. Read more§fn fold_switch_cases(&mut self, node: Vec<SwitchCase>) -> Vec<SwitchCase>
fn fold_switch_cases(&mut self, node: Vec<SwitchCase>) -> Vec<SwitchCase>
Visit a node of type
Vec < SwitchCase >
. Read more§fn fold_switch_stmt(&mut self, node: SwitchStmt) -> SwitchStmt
fn fold_switch_stmt(&mut self, node: SwitchStmt) -> SwitchStmt
Visit a node of type
SwitchStmt
. Read more§fn fold_syntax_context(&mut self, node: SyntaxContext) -> SyntaxContext
fn fold_syntax_context(&mut self, node: SyntaxContext) -> SyntaxContext
Visit a node of type
swc_common :: SyntaxContext
. Read more§fn fold_tagged_tpl(&mut self, node: TaggedTpl) -> TaggedTpl
fn fold_tagged_tpl(&mut self, node: TaggedTpl) -> TaggedTpl
Visit a node of type
TaggedTpl
. Read more§fn fold_this_expr(&mut self, node: ThisExpr) -> ThisExpr
fn fold_this_expr(&mut self, node: ThisExpr) -> ThisExpr
Visit a node of type
ThisExpr
. Read more§fn fold_throw_stmt(&mut self, node: ThrowStmt) -> ThrowStmt
fn fold_throw_stmt(&mut self, node: ThrowStmt) -> ThrowStmt
Visit a node of type
ThrowStmt
. Read more§fn fold_tpl_element(&mut self, node: TplElement) -> TplElement
fn fold_tpl_element(&mut self, node: TplElement) -> TplElement
Visit a node of type
TplElement
. Read more§fn fold_tpl_elements(&mut self, node: Vec<TplElement>) -> Vec<TplElement>
fn fold_tpl_elements(&mut self, node: Vec<TplElement>) -> Vec<TplElement>
Visit a node of type
Vec < TplElement >
. Read more§fn fold_true_plus_minus(&mut self, node: TruePlusMinus) -> TruePlusMinus
fn fold_true_plus_minus(&mut self, node: TruePlusMinus) -> TruePlusMinus
Visit a node of type
TruePlusMinus
. Read more§fn fold_try_stmt(&mut self, node: TryStmt) -> TryStmt
fn fold_try_stmt(&mut self, node: TryStmt) -> TryStmt
Visit a node of type
TryStmt
. Read more§fn fold_ts_array_type(&mut self, node: TsArrayType) -> TsArrayType
fn fold_ts_array_type(&mut self, node: TsArrayType) -> TsArrayType
Visit a node of type
TsArrayType
. Read more§fn fold_ts_as_expr(&mut self, node: TsAsExpr) -> TsAsExpr
fn fold_ts_as_expr(&mut self, node: TsAsExpr) -> TsAsExpr
Visit a node of type
TsAsExpr
. Read more§fn fold_ts_call_signature_decl(
&mut self,
node: TsCallSignatureDecl,
) -> TsCallSignatureDecl
fn fold_ts_call_signature_decl( &mut self, node: TsCallSignatureDecl, ) -> TsCallSignatureDecl
Visit a node of type
TsCallSignatureDecl
. Read more§fn fold_ts_conditional_type(
&mut self,
node: TsConditionalType,
) -> TsConditionalType
fn fold_ts_conditional_type( &mut self, node: TsConditionalType, ) -> TsConditionalType
Visit a node of type
TsConditionalType
. Read more§fn fold_ts_const_assertion(
&mut self,
node: TsConstAssertion,
) -> TsConstAssertion
fn fold_ts_const_assertion( &mut self, node: TsConstAssertion, ) -> TsConstAssertion
Visit a node of type
TsConstAssertion
. Read more§fn fold_ts_construct_signature_decl(
&mut self,
node: TsConstructSignatureDecl,
) -> TsConstructSignatureDecl
fn fold_ts_construct_signature_decl( &mut self, node: TsConstructSignatureDecl, ) -> TsConstructSignatureDecl
Visit a node of type
TsConstructSignatureDecl
. Read more§fn fold_ts_constructor_type(
&mut self,
node: TsConstructorType,
) -> TsConstructorType
fn fold_ts_constructor_type( &mut self, node: TsConstructorType, ) -> TsConstructorType
Visit a node of type
TsConstructorType
. Read more§fn fold_ts_entity_name(&mut self, node: TsEntityName) -> TsEntityName
fn fold_ts_entity_name(&mut self, node: TsEntityName) -> TsEntityName
Visit a node of type
TsEntityName
. Read more§fn fold_ts_enum_decl(&mut self, node: TsEnumDecl) -> TsEnumDecl
fn fold_ts_enum_decl(&mut self, node: TsEnumDecl) -> TsEnumDecl
Visit a node of type
TsEnumDecl
. Read more§fn fold_ts_enum_member(&mut self, node: TsEnumMember) -> TsEnumMember
fn fold_ts_enum_member(&mut self, node: TsEnumMember) -> TsEnumMember
Visit a node of type
TsEnumMember
. Read more§fn fold_ts_enum_member_id(&mut self, node: TsEnumMemberId) -> TsEnumMemberId
fn fold_ts_enum_member_id(&mut self, node: TsEnumMemberId) -> TsEnumMemberId
Visit a node of type
TsEnumMemberId
. Read more§fn fold_ts_enum_members(&mut self, node: Vec<TsEnumMember>) -> Vec<TsEnumMember>
fn fold_ts_enum_members(&mut self, node: Vec<TsEnumMember>) -> Vec<TsEnumMember>
Visit a node of type
Vec < TsEnumMember >
. Read more§fn fold_ts_export_assignment(
&mut self,
node: TsExportAssignment,
) -> TsExportAssignment
fn fold_ts_export_assignment( &mut self, node: TsExportAssignment, ) -> TsExportAssignment
Visit a node of type
TsExportAssignment
. Read more§fn fold_ts_expr_with_type_args(
&mut self,
node: TsExprWithTypeArgs,
) -> TsExprWithTypeArgs
fn fold_ts_expr_with_type_args( &mut self, node: TsExprWithTypeArgs, ) -> TsExprWithTypeArgs
Visit a node of type
TsExprWithTypeArgs
. Read more§fn fold_ts_expr_with_type_argss(
&mut self,
node: Vec<TsExprWithTypeArgs>,
) -> Vec<TsExprWithTypeArgs>
fn fold_ts_expr_with_type_argss( &mut self, node: Vec<TsExprWithTypeArgs>, ) -> Vec<TsExprWithTypeArgs>
Visit a node of type
Vec < TsExprWithTypeArgs >
. Read more§fn fold_ts_external_module_ref(
&mut self,
node: TsExternalModuleRef,
) -> TsExternalModuleRef
fn fold_ts_external_module_ref( &mut self, node: TsExternalModuleRef, ) -> TsExternalModuleRef
Visit a node of type
TsExternalModuleRef
. Read more§fn fold_ts_fn_or_constructor_type(
&mut self,
node: TsFnOrConstructorType,
) -> TsFnOrConstructorType
fn fold_ts_fn_or_constructor_type( &mut self, node: TsFnOrConstructorType, ) -> TsFnOrConstructorType
Visit a node of type
TsFnOrConstructorType
. Read more§fn fold_ts_fn_param(&mut self, node: TsFnParam) -> TsFnParam
fn fold_ts_fn_param(&mut self, node: TsFnParam) -> TsFnParam
Visit a node of type
TsFnParam
. Read more§fn fold_ts_fn_params(&mut self, node: Vec<TsFnParam>) -> Vec<TsFnParam>
fn fold_ts_fn_params(&mut self, node: Vec<TsFnParam>) -> Vec<TsFnParam>
Visit a node of type
Vec < TsFnParam >
. Read more§fn fold_ts_fn_type(&mut self, node: TsFnType) -> TsFnType
fn fold_ts_fn_type(&mut self, node: TsFnType) -> TsFnType
Visit a node of type
TsFnType
. Read more§fn fold_ts_getter_signature(
&mut self,
node: TsGetterSignature,
) -> TsGetterSignature
fn fold_ts_getter_signature( &mut self, node: TsGetterSignature, ) -> TsGetterSignature
Visit a node of type
TsGetterSignature
. Read more§fn fold_ts_import_equals_decl(
&mut self,
node: TsImportEqualsDecl,
) -> TsImportEqualsDecl
fn fold_ts_import_equals_decl( &mut self, node: TsImportEqualsDecl, ) -> TsImportEqualsDecl
Visit a node of type
TsImportEqualsDecl
. Read more§fn fold_ts_import_type(&mut self, node: TsImportType) -> TsImportType
fn fold_ts_import_type(&mut self, node: TsImportType) -> TsImportType
Visit a node of type
TsImportType
. Read more§fn fold_ts_index_signature(
&mut self,
node: TsIndexSignature,
) -> TsIndexSignature
fn fold_ts_index_signature( &mut self, node: TsIndexSignature, ) -> TsIndexSignature
Visit a node of type
TsIndexSignature
. Read more§fn fold_ts_indexed_access_type(
&mut self,
node: TsIndexedAccessType,
) -> TsIndexedAccessType
fn fold_ts_indexed_access_type( &mut self, node: TsIndexedAccessType, ) -> TsIndexedAccessType
Visit a node of type
TsIndexedAccessType
. Read more§fn fold_ts_infer_type(&mut self, node: TsInferType) -> TsInferType
fn fold_ts_infer_type(&mut self, node: TsInferType) -> TsInferType
Visit a node of type
TsInferType
. Read more§fn fold_ts_instantiation(&mut self, node: TsInstantiation) -> TsInstantiation
fn fold_ts_instantiation(&mut self, node: TsInstantiation) -> TsInstantiation
Visit a node of type
TsInstantiation
. Read more§fn fold_ts_interface_body(&mut self, node: TsInterfaceBody) -> TsInterfaceBody
fn fold_ts_interface_body(&mut self, node: TsInterfaceBody) -> TsInterfaceBody
Visit a node of type
TsInterfaceBody
. Read more§fn fold_ts_interface_decl(&mut self, node: TsInterfaceDecl) -> TsInterfaceDecl
fn fold_ts_interface_decl(&mut self, node: TsInterfaceDecl) -> TsInterfaceDecl
Visit a node of type
TsInterfaceDecl
. Read more§fn fold_ts_intersection_type(
&mut self,
node: TsIntersectionType,
) -> TsIntersectionType
fn fold_ts_intersection_type( &mut self, node: TsIntersectionType, ) -> TsIntersectionType
Visit a node of type
TsIntersectionType
. Read more§fn fold_ts_keyword_type(&mut self, node: TsKeywordType) -> TsKeywordType
fn fold_ts_keyword_type(&mut self, node: TsKeywordType) -> TsKeywordType
Visit a node of type
TsKeywordType
. Read more§fn fold_ts_keyword_type_kind(
&mut self,
node: TsKeywordTypeKind,
) -> TsKeywordTypeKind
fn fold_ts_keyword_type_kind( &mut self, node: TsKeywordTypeKind, ) -> TsKeywordTypeKind
Visit a node of type
TsKeywordTypeKind
. Read more§fn fold_ts_lit(&mut self, node: TsLit) -> TsLit
fn fold_ts_lit(&mut self, node: TsLit) -> TsLit
Visit a node of type
TsLit
. Read more§fn fold_ts_lit_type(&mut self, node: TsLitType) -> TsLitType
fn fold_ts_lit_type(&mut self, node: TsLitType) -> TsLitType
Visit a node of type
TsLitType
. Read more§fn fold_ts_mapped_type(&mut self, node: TsMappedType) -> TsMappedType
fn fold_ts_mapped_type(&mut self, node: TsMappedType) -> TsMappedType
Visit a node of type
TsMappedType
. Read more§fn fold_ts_method_signature(
&mut self,
node: TsMethodSignature,
) -> TsMethodSignature
fn fold_ts_method_signature( &mut self, node: TsMethodSignature, ) -> TsMethodSignature
Visit a node of type
TsMethodSignature
. Read more§fn fold_ts_module_block(&mut self, node: TsModuleBlock) -> TsModuleBlock
fn fold_ts_module_block(&mut self, node: TsModuleBlock) -> TsModuleBlock
Visit a node of type
TsModuleBlock
. Read more§fn fold_ts_module_decl(&mut self, node: TsModuleDecl) -> TsModuleDecl
fn fold_ts_module_decl(&mut self, node: TsModuleDecl) -> TsModuleDecl
Visit a node of type
TsModuleDecl
. Read more§fn fold_ts_module_name(&mut self, node: TsModuleName) -> TsModuleName
fn fold_ts_module_name(&mut self, node: TsModuleName) -> TsModuleName
Visit a node of type
TsModuleName
. Read more§fn fold_ts_module_ref(&mut self, node: TsModuleRef) -> TsModuleRef
fn fold_ts_module_ref(&mut self, node: TsModuleRef) -> TsModuleRef
Visit a node of type
TsModuleRef
. Read more§fn fold_ts_namespace_body(&mut self, node: TsNamespaceBody) -> TsNamespaceBody
fn fold_ts_namespace_body(&mut self, node: TsNamespaceBody) -> TsNamespaceBody
Visit a node of type
TsNamespaceBody
. Read more§fn fold_ts_namespace_decl(&mut self, node: TsNamespaceDecl) -> TsNamespaceDecl
fn fold_ts_namespace_decl(&mut self, node: TsNamespaceDecl) -> TsNamespaceDecl
Visit a node of type
TsNamespaceDecl
. Read more§fn fold_ts_namespace_export_decl(
&mut self,
node: TsNamespaceExportDecl,
) -> TsNamespaceExportDecl
fn fold_ts_namespace_export_decl( &mut self, node: TsNamespaceExportDecl, ) -> TsNamespaceExportDecl
Visit a node of type
TsNamespaceExportDecl
. Read more§fn fold_ts_non_null_expr(&mut self, node: TsNonNullExpr) -> TsNonNullExpr
fn fold_ts_non_null_expr(&mut self, node: TsNonNullExpr) -> TsNonNullExpr
Visit a node of type
TsNonNullExpr
. Read more§fn fold_ts_optional_type(&mut self, node: TsOptionalType) -> TsOptionalType
fn fold_ts_optional_type(&mut self, node: TsOptionalType) -> TsOptionalType
Visit a node of type
TsOptionalType
. Read more§fn fold_ts_param_prop(&mut self, node: TsParamProp) -> TsParamProp
fn fold_ts_param_prop(&mut self, node: TsParamProp) -> TsParamProp
Visit a node of type
TsParamProp
. Read more§fn fold_ts_param_prop_param(
&mut self,
node: TsParamPropParam,
) -> TsParamPropParam
fn fold_ts_param_prop_param( &mut self, node: TsParamPropParam, ) -> TsParamPropParam
Visit a node of type
TsParamPropParam
. Read more§fn fold_ts_parenthesized_type(
&mut self,
node: TsParenthesizedType,
) -> TsParenthesizedType
fn fold_ts_parenthesized_type( &mut self, node: TsParenthesizedType, ) -> TsParenthesizedType
Visit a node of type
TsParenthesizedType
. Read more§fn fold_ts_property_signature(
&mut self,
node: TsPropertySignature,
) -> TsPropertySignature
fn fold_ts_property_signature( &mut self, node: TsPropertySignature, ) -> TsPropertySignature
Visit a node of type
TsPropertySignature
. Read more§fn fold_ts_qualified_name(&mut self, node: TsQualifiedName) -> TsQualifiedName
fn fold_ts_qualified_name(&mut self, node: TsQualifiedName) -> TsQualifiedName
Visit a node of type
TsQualifiedName
. Read more§fn fold_ts_rest_type(&mut self, node: TsRestType) -> TsRestType
fn fold_ts_rest_type(&mut self, node: TsRestType) -> TsRestType
Visit a node of type
TsRestType
. Read more§fn fold_ts_satisfies_expr(&mut self, node: TsSatisfiesExpr) -> TsSatisfiesExpr
fn fold_ts_satisfies_expr(&mut self, node: TsSatisfiesExpr) -> TsSatisfiesExpr
Visit a node of type
TsSatisfiesExpr
. Read more§fn fold_ts_setter_signature(
&mut self,
node: TsSetterSignature,
) -> TsSetterSignature
fn fold_ts_setter_signature( &mut self, node: TsSetterSignature, ) -> TsSetterSignature
Visit a node of type
TsSetterSignature
. Read more§fn fold_ts_this_type(&mut self, node: TsThisType) -> TsThisType
fn fold_ts_this_type(&mut self, node: TsThisType) -> TsThisType
Visit a node of type
TsThisType
. Read more§fn fold_ts_this_type_or_ident(
&mut self,
node: TsThisTypeOrIdent,
) -> TsThisTypeOrIdent
fn fold_ts_this_type_or_ident( &mut self, node: TsThisTypeOrIdent, ) -> TsThisTypeOrIdent
Visit a node of type
TsThisTypeOrIdent
. Read more§fn fold_ts_tpl_lit_type(&mut self, node: TsTplLitType) -> TsTplLitType
fn fold_ts_tpl_lit_type(&mut self, node: TsTplLitType) -> TsTplLitType
Visit a node of type
TsTplLitType
. Read more§fn fold_ts_tuple_element(&mut self, node: TsTupleElement) -> TsTupleElement
fn fold_ts_tuple_element(&mut self, node: TsTupleElement) -> TsTupleElement
Visit a node of type
TsTupleElement
. Read more§fn fold_ts_tuple_elements(
&mut self,
node: Vec<TsTupleElement>,
) -> Vec<TsTupleElement>
fn fold_ts_tuple_elements( &mut self, node: Vec<TsTupleElement>, ) -> Vec<TsTupleElement>
Visit a node of type
Vec < TsTupleElement >
. Read more§fn fold_ts_tuple_type(&mut self, node: TsTupleType) -> TsTupleType
fn fold_ts_tuple_type(&mut self, node: TsTupleType) -> TsTupleType
Visit a node of type
TsTupleType
. Read more§fn fold_ts_type(&mut self, node: TsType) -> TsType
fn fold_ts_type(&mut self, node: TsType) -> TsType
Visit a node of type
TsType
. Read more§fn fold_ts_type_alias_decl(&mut self, node: TsTypeAliasDecl) -> TsTypeAliasDecl
fn fold_ts_type_alias_decl(&mut self, node: TsTypeAliasDecl) -> TsTypeAliasDecl
Visit a node of type
TsTypeAliasDecl
. Read more§fn fold_ts_type_ann(&mut self, node: TsTypeAnn) -> TsTypeAnn
fn fold_ts_type_ann(&mut self, node: TsTypeAnn) -> TsTypeAnn
Visit a node of type
TsTypeAnn
. Read more§fn fold_ts_type_assertion(&mut self, node: TsTypeAssertion) -> TsTypeAssertion
fn fold_ts_type_assertion(&mut self, node: TsTypeAssertion) -> TsTypeAssertion
Visit a node of type
TsTypeAssertion
. Read more§fn fold_ts_type_element(&mut self, node: TsTypeElement) -> TsTypeElement
fn fold_ts_type_element(&mut self, node: TsTypeElement) -> TsTypeElement
Visit a node of type
TsTypeElement
. Read more§fn fold_ts_type_elements(
&mut self,
node: Vec<TsTypeElement>,
) -> Vec<TsTypeElement>
fn fold_ts_type_elements( &mut self, node: Vec<TsTypeElement>, ) -> Vec<TsTypeElement>
Visit a node of type
Vec < TsTypeElement >
. Read more§fn fold_ts_type_lit(&mut self, node: TsTypeLit) -> TsTypeLit
fn fold_ts_type_lit(&mut self, node: TsTypeLit) -> TsTypeLit
Visit a node of type
TsTypeLit
. Read more§fn fold_ts_type_operator(&mut self, node: TsTypeOperator) -> TsTypeOperator
fn fold_ts_type_operator(&mut self, node: TsTypeOperator) -> TsTypeOperator
Visit a node of type
TsTypeOperator
. Read more§fn fold_ts_type_operator_op(
&mut self,
node: TsTypeOperatorOp,
) -> TsTypeOperatorOp
fn fold_ts_type_operator_op( &mut self, node: TsTypeOperatorOp, ) -> TsTypeOperatorOp
Visit a node of type
TsTypeOperatorOp
. Read more§fn fold_ts_type_param(&mut self, node: TsTypeParam) -> TsTypeParam
fn fold_ts_type_param(&mut self, node: TsTypeParam) -> TsTypeParam
Visit a node of type
TsTypeParam
. Read more§fn fold_ts_type_param_decl(&mut self, node: TsTypeParamDecl) -> TsTypeParamDecl
fn fold_ts_type_param_decl(&mut self, node: TsTypeParamDecl) -> TsTypeParamDecl
Visit a node of type
TsTypeParamDecl
. Read more§fn fold_ts_type_param_instantiation(
&mut self,
node: TsTypeParamInstantiation,
) -> TsTypeParamInstantiation
fn fold_ts_type_param_instantiation( &mut self, node: TsTypeParamInstantiation, ) -> TsTypeParamInstantiation
Visit a node of type
TsTypeParamInstantiation
. Read more§fn fold_ts_type_params(&mut self, node: Vec<TsTypeParam>) -> Vec<TsTypeParam>
fn fold_ts_type_params(&mut self, node: Vec<TsTypeParam>) -> Vec<TsTypeParam>
Visit a node of type
Vec < TsTypeParam >
. Read more§fn fold_ts_type_predicate(&mut self, node: TsTypePredicate) -> TsTypePredicate
fn fold_ts_type_predicate(&mut self, node: TsTypePredicate) -> TsTypePredicate
Visit a node of type
TsTypePredicate
. Read more§fn fold_ts_type_query(&mut self, node: TsTypeQuery) -> TsTypeQuery
fn fold_ts_type_query(&mut self, node: TsTypeQuery) -> TsTypeQuery
Visit a node of type
TsTypeQuery
. Read more§fn fold_ts_type_query_expr(&mut self, node: TsTypeQueryExpr) -> TsTypeQueryExpr
fn fold_ts_type_query_expr(&mut self, node: TsTypeQueryExpr) -> TsTypeQueryExpr
Visit a node of type
TsTypeQueryExpr
. Read more§fn fold_ts_type_ref(&mut self, node: TsTypeRef) -> TsTypeRef
fn fold_ts_type_ref(&mut self, node: TsTypeRef) -> TsTypeRef
Visit a node of type
TsTypeRef
. Read more§fn fold_ts_types(&mut self, node: Vec<Box<TsType>>) -> Vec<Box<TsType>>
fn fold_ts_types(&mut self, node: Vec<Box<TsType>>) -> Vec<Box<TsType>>
Visit a node of type
Vec < Box < TsType > >
. Read more§fn fold_ts_union_or_intersection_type(
&mut self,
node: TsUnionOrIntersectionType,
) -> TsUnionOrIntersectionType
fn fold_ts_union_or_intersection_type( &mut self, node: TsUnionOrIntersectionType, ) -> TsUnionOrIntersectionType
Visit a node of type
TsUnionOrIntersectionType
. Read more§fn fold_ts_union_type(&mut self, node: TsUnionType) -> TsUnionType
fn fold_ts_union_type(&mut self, node: TsUnionType) -> TsUnionType
Visit a node of type
TsUnionType
. Read more§fn fold_unary_expr(&mut self, node: UnaryExpr) -> UnaryExpr
fn fold_unary_expr(&mut self, node: UnaryExpr) -> UnaryExpr
Visit a node of type
UnaryExpr
. Read more§fn fold_unary_op(&mut self, node: UnaryOp) -> UnaryOp
fn fold_unary_op(&mut self, node: UnaryOp) -> UnaryOp
Visit a node of type
UnaryOp
. Read more§fn fold_update_expr(&mut self, node: UpdateExpr) -> UpdateExpr
fn fold_update_expr(&mut self, node: UpdateExpr) -> UpdateExpr
Visit a node of type
UpdateExpr
. Read more§fn fold_update_op(&mut self, node: UpdateOp) -> UpdateOp
fn fold_update_op(&mut self, node: UpdateOp) -> UpdateOp
Visit a node of type
UpdateOp
. Read more§fn fold_using_decl(&mut self, node: UsingDecl) -> UsingDecl
fn fold_using_decl(&mut self, node: UsingDecl) -> UsingDecl
Visit a node of type
UsingDecl
. Read more§fn fold_var_decl(&mut self, node: VarDecl) -> VarDecl
fn fold_var_decl(&mut self, node: VarDecl) -> VarDecl
Visit a node of type
VarDecl
. Read more§fn fold_var_decl_kind(&mut self, node: VarDeclKind) -> VarDeclKind
fn fold_var_decl_kind(&mut self, node: VarDeclKind) -> VarDeclKind
Visit a node of type
VarDeclKind
. Read more§fn fold_var_decl_or_expr(&mut self, node: VarDeclOrExpr) -> VarDeclOrExpr
fn fold_var_decl_or_expr(&mut self, node: VarDeclOrExpr) -> VarDeclOrExpr
Visit a node of type
VarDeclOrExpr
. Read more§fn fold_var_declarator(&mut self, node: VarDeclarator) -> VarDeclarator
fn fold_var_declarator(&mut self, node: VarDeclarator) -> VarDeclarator
Visit a node of type
VarDeclarator
. Read more§fn fold_var_declarators(
&mut self,
node: Vec<VarDeclarator>,
) -> Vec<VarDeclarator>
fn fold_var_declarators( &mut self, node: Vec<VarDeclarator>, ) -> Vec<VarDeclarator>
Visit a node of type
Vec < VarDeclarator >
. Read more§fn fold_while_stmt(&mut self, node: WhileStmt) -> WhileStmt
fn fold_while_stmt(&mut self, node: WhileStmt) -> WhileStmt
Visit a node of type
WhileStmt
. Read more§fn fold_with_stmt(&mut self, node: WithStmt) -> WithStmt
fn fold_with_stmt(&mut self, node: WithStmt) -> WithStmt
Visit a node of type
WithStmt
. Read more§fn fold_yield_expr(&mut self, node: YieldExpr) -> YieldExpr
fn fold_yield_expr(&mut self, node: YieldExpr) -> YieldExpr
Visit a node of type
YieldExpr
. Read more§impl<V> Fold for Optional<V>where
V: Fold,
impl<V> Fold for Optional<V>where
V: Fold,
§fn fold_absolute_color_base(
&mut self,
node: AbsoluteColorBase,
) -> AbsoluteColorBase
fn fold_absolute_color_base( &mut self, node: AbsoluteColorBase, ) -> AbsoluteColorBase
Visit a node of type
AbsoluteColorBase
. Read more§fn fold_alpha_value(&mut self, node: AlphaValue) -> AlphaValue
fn fold_alpha_value(&mut self, node: AlphaValue) -> AlphaValue
Visit a node of type
AlphaValue
. Read more§fn fold_an_plus_b(&mut self, node: AnPlusB) -> AnPlusB
fn fold_an_plus_b(&mut self, node: AnPlusB) -> AnPlusB
Visit a node of type
AnPlusB
. Read more§fn fold_an_plus_b_notation(&mut self, node: AnPlusBNotation) -> AnPlusBNotation
fn fold_an_plus_b_notation(&mut self, node: AnPlusBNotation) -> AnPlusBNotation
Visit a node of type
AnPlusBNotation
. Read more§fn fold_angle(&mut self, node: Angle) -> Angle
fn fold_angle(&mut self, node: Angle) -> Angle
Visit a node of type
Angle
. Read more§fn fold_angle_percentage(&mut self, node: AnglePercentage) -> AnglePercentage
fn fold_angle_percentage(&mut self, node: AnglePercentage) -> AnglePercentage
Visit a node of type
AnglePercentage
. Read more§fn fold_any_namespace(&mut self, node: AnyNamespace) -> AnyNamespace
fn fold_any_namespace(&mut self, node: AnyNamespace) -> AnyNamespace
Visit a node of type
AnyNamespace
. Read more§fn fold_at_rule(&mut self, node: AtRule) -> AtRule
fn fold_at_rule(&mut self, node: AtRule) -> AtRule
Visit a node of type
AtRule
. Read more§fn fold_at_rule_name(&mut self, node: AtRuleName) -> AtRuleName
fn fold_at_rule_name(&mut self, node: AtRuleName) -> AtRuleName
Visit a node of type
AtRuleName
. Read more§fn fold_at_rule_prelude(&mut self, node: AtRulePrelude) -> AtRulePrelude
fn fold_at_rule_prelude(&mut self, node: AtRulePrelude) -> AtRulePrelude
Visit a node of type
AtRulePrelude
. Read more§fn fold_attribute_selector(
&mut self,
node: AttributeSelector,
) -> AttributeSelector
fn fold_attribute_selector( &mut self, node: AttributeSelector, ) -> AttributeSelector
Visit a node of type
AttributeSelector
. Read more§fn fold_attribute_selector_matcher(
&mut self,
node: AttributeSelectorMatcher,
) -> AttributeSelectorMatcher
fn fold_attribute_selector_matcher( &mut self, node: AttributeSelectorMatcher, ) -> AttributeSelectorMatcher
Visit a node of type
AttributeSelectorMatcher
. Read more§fn fold_attribute_selector_matcher_value(
&mut self,
node: AttributeSelectorMatcherValue,
) -> AttributeSelectorMatcherValue
fn fold_attribute_selector_matcher_value( &mut self, node: AttributeSelectorMatcherValue, ) -> AttributeSelectorMatcherValue
Visit a node of type
AttributeSelectorMatcherValue
. Read more§fn fold_attribute_selector_modifier(
&mut self,
node: AttributeSelectorModifier,
) -> AttributeSelectorModifier
fn fold_attribute_selector_modifier( &mut self, node: AttributeSelectorModifier, ) -> AttributeSelectorModifier
Visit a node of type
AttributeSelectorModifier
. Read more§fn fold_attribute_selector_value(
&mut self,
node: AttributeSelectorValue,
) -> AttributeSelectorValue
fn fold_attribute_selector_value( &mut self, node: AttributeSelectorValue, ) -> AttributeSelectorValue
Visit a node of type
AttributeSelectorValue
. Read more§fn fold_bin_op(&mut self, node: BinOp) -> BinOp
fn fold_bin_op(&mut self, node: BinOp) -> BinOp
Visit a node of type
BinOp
. Read more§fn fold_calc_operator(&mut self, node: CalcOperator) -> CalcOperator
fn fold_calc_operator(&mut self, node: CalcOperator) -> CalcOperator
Visit a node of type
CalcOperator
. Read more§fn fold_calc_operator_type(
&mut self,
node: CalcOperatorType,
) -> CalcOperatorType
fn fold_calc_operator_type( &mut self, node: CalcOperatorType, ) -> CalcOperatorType
Visit a node of type
CalcOperatorType
. Read more§fn fold_calc_product(&mut self, node: CalcProduct) -> CalcProduct
fn fold_calc_product(&mut self, node: CalcProduct) -> CalcProduct
Visit a node of type
CalcProduct
. Read more§fn fold_calc_product_or_operator(
&mut self,
node: CalcProductOrOperator,
) -> CalcProductOrOperator
fn fold_calc_product_or_operator( &mut self, node: CalcProductOrOperator, ) -> CalcProductOrOperator
Visit a node of type
CalcProductOrOperator
. Read more§fn fold_calc_product_or_operators(
&mut self,
node: Vec<CalcProductOrOperator>,
) -> Vec<CalcProductOrOperator>
fn fold_calc_product_or_operators( &mut self, node: Vec<CalcProductOrOperator>, ) -> Vec<CalcProductOrOperator>
Visit a node of type
Vec < CalcProductOrOperator >
. Read more§fn fold_calc_sum(&mut self, node: CalcSum) -> CalcSum
fn fold_calc_sum(&mut self, node: CalcSum) -> CalcSum
Visit a node of type
CalcSum
. Read more§fn fold_calc_value(&mut self, node: CalcValue) -> CalcValue
fn fold_calc_value(&mut self, node: CalcValue) -> CalcValue
Visit a node of type
CalcValue
. Read more§fn fold_calc_value_or_operator(
&mut self,
node: CalcValueOrOperator,
) -> CalcValueOrOperator
fn fold_calc_value_or_operator( &mut self, node: CalcValueOrOperator, ) -> CalcValueOrOperator
Visit a node of type
CalcValueOrOperator
. Read more§fn fold_calc_value_or_operators(
&mut self,
node: Vec<CalcValueOrOperator>,
) -> Vec<CalcValueOrOperator>
fn fold_calc_value_or_operators( &mut self, node: Vec<CalcValueOrOperator>, ) -> Vec<CalcValueOrOperator>
Visit a node of type
Vec < CalcValueOrOperator >
. Read more§fn fold_class_selector(&mut self, node: ClassSelector) -> ClassSelector
fn fold_class_selector(&mut self, node: ClassSelector) -> ClassSelector
Visit a node of type
ClassSelector
. Read more§fn fold_cmyk_component(&mut self, node: CmykComponent) -> CmykComponent
fn fold_cmyk_component(&mut self, node: CmykComponent) -> CmykComponent
Visit a node of type
CmykComponent
. Read more§fn fold_color(&mut self, node: Color) -> Color
fn fold_color(&mut self, node: Color) -> Color
Visit a node of type
Color
. Read more§fn fold_color_profile_name(
&mut self,
node: ColorProfileName,
) -> ColorProfileName
fn fold_color_profile_name( &mut self, node: ColorProfileName, ) -> ColorProfileName
Visit a node of type
ColorProfileName
. Read more§fn fold_combinator(&mut self, node: Combinator) -> Combinator
fn fold_combinator(&mut self, node: Combinator) -> Combinator
Visit a node of type
Combinator
. Read more§fn fold_combinator_value(&mut self, node: CombinatorValue) -> CombinatorValue
fn fold_combinator_value(&mut self, node: CombinatorValue) -> CombinatorValue
Visit a node of type
CombinatorValue
. Read more§fn fold_complex_selector(&mut self, node: ComplexSelector) -> ComplexSelector
fn fold_complex_selector(&mut self, node: ComplexSelector) -> ComplexSelector
Visit a node of type
ComplexSelector
. Read more§fn fold_complex_selector_children(
&mut self,
node: ComplexSelectorChildren,
) -> ComplexSelectorChildren
fn fold_complex_selector_children( &mut self, node: ComplexSelectorChildren, ) -> ComplexSelectorChildren
Visit a node of type
ComplexSelectorChildren
. Read more§fn fold_complex_selector_childrens(
&mut self,
node: Vec<ComplexSelectorChildren>,
) -> Vec<ComplexSelectorChildren>
fn fold_complex_selector_childrens( &mut self, node: Vec<ComplexSelectorChildren>, ) -> Vec<ComplexSelectorChildren>
Visit a node of type
Vec < ComplexSelectorChildren >
. Read more§fn fold_complex_selectors(
&mut self,
node: Vec<ComplexSelector>,
) -> Vec<ComplexSelector>
fn fold_complex_selectors( &mut self, node: Vec<ComplexSelector>, ) -> Vec<ComplexSelector>
Visit a node of type
Vec < ComplexSelector >
. Read more§fn fold_component_value(&mut self, node: ComponentValue) -> ComponentValue
fn fold_component_value(&mut self, node: ComponentValue) -> ComponentValue
Visit a node of type
ComponentValue
. Read more§fn fold_component_values(
&mut self,
node: Vec<ComponentValue>,
) -> Vec<ComponentValue>
fn fold_component_values( &mut self, node: Vec<ComponentValue>, ) -> Vec<ComponentValue>
Visit a node of type
Vec < ComponentValue >
. Read more§fn fold_compound_selector(&mut self, node: CompoundSelector) -> CompoundSelector
fn fold_compound_selector(&mut self, node: CompoundSelector) -> CompoundSelector
Visit a node of type
CompoundSelector
. Read more§fn fold_compound_selector_list(
&mut self,
node: CompoundSelectorList,
) -> CompoundSelectorList
fn fold_compound_selector_list( &mut self, node: CompoundSelectorList, ) -> CompoundSelectorList
Visit a node of type
CompoundSelectorList
. Read more§fn fold_compound_selectors(
&mut self,
node: Vec<CompoundSelector>,
) -> Vec<CompoundSelector>
fn fold_compound_selectors( &mut self, node: Vec<CompoundSelector>, ) -> Vec<CompoundSelector>
Visit a node of type
Vec < CompoundSelector >
. Read more§fn fold_container_condition(
&mut self,
node: ContainerCondition,
) -> ContainerCondition
fn fold_container_condition( &mut self, node: ContainerCondition, ) -> ContainerCondition
Visit a node of type
ContainerCondition
. Read more§fn fold_container_name(&mut self, node: ContainerName) -> ContainerName
fn fold_container_name(&mut self, node: ContainerName) -> ContainerName
Visit a node of type
ContainerName
. Read more§fn fold_container_query(&mut self, node: ContainerQuery) -> ContainerQuery
fn fold_container_query(&mut self, node: ContainerQuery) -> ContainerQuery
Visit a node of type
ContainerQuery
. Read more§fn fold_container_query_and(
&mut self,
node: ContainerQueryAnd,
) -> ContainerQueryAnd
fn fold_container_query_and( &mut self, node: ContainerQueryAnd, ) -> ContainerQueryAnd
Visit a node of type
ContainerQueryAnd
. Read more§fn fold_container_query_not(
&mut self,
node: ContainerQueryNot,
) -> ContainerQueryNot
fn fold_container_query_not( &mut self, node: ContainerQueryNot, ) -> ContainerQueryNot
Visit a node of type
ContainerQueryNot
. Read more§fn fold_container_query_or(
&mut self,
node: ContainerQueryOr,
) -> ContainerQueryOr
fn fold_container_query_or( &mut self, node: ContainerQueryOr, ) -> ContainerQueryOr
Visit a node of type
ContainerQueryOr
. Read more§fn fold_container_query_type(
&mut self,
node: ContainerQueryType,
) -> ContainerQueryType
fn fold_container_query_type( &mut self, node: ContainerQueryType, ) -> ContainerQueryType
Visit a node of type
ContainerQueryType
. Read more§fn fold_container_query_types(
&mut self,
node: Vec<ContainerQueryType>,
) -> Vec<ContainerQueryType>
fn fold_container_query_types( &mut self, node: Vec<ContainerQueryType>, ) -> Vec<ContainerQueryType>
Visit a node of type
Vec < ContainerQueryType >
. Read more§fn fold_custom_highlight_name(
&mut self,
node: CustomHighlightName,
) -> CustomHighlightName
fn fold_custom_highlight_name( &mut self, node: CustomHighlightName, ) -> CustomHighlightName
Visit a node of type
CustomHighlightName
. Read more§fn fold_custom_ident(&mut self, node: CustomIdent) -> CustomIdent
fn fold_custom_ident(&mut self, node: CustomIdent) -> CustomIdent
Visit a node of type
CustomIdent
. Read more§fn fold_custom_idents(&mut self, node: Vec<CustomIdent>) -> Vec<CustomIdent>
fn fold_custom_idents(&mut self, node: Vec<CustomIdent>) -> Vec<CustomIdent>
Visit a node of type
Vec < CustomIdent >
. Read more§fn fold_custom_media_query(
&mut self,
node: CustomMediaQuery,
) -> CustomMediaQuery
fn fold_custom_media_query( &mut self, node: CustomMediaQuery, ) -> CustomMediaQuery
Visit a node of type
CustomMediaQuery
. Read more§fn fold_custom_media_query_media_type(
&mut self,
node: CustomMediaQueryMediaType,
) -> CustomMediaQueryMediaType
fn fold_custom_media_query_media_type( &mut self, node: CustomMediaQueryMediaType, ) -> CustomMediaQueryMediaType
Visit a node of type
CustomMediaQueryMediaType
. Read more§fn fold_custom_property_name(
&mut self,
node: CustomPropertyName,
) -> CustomPropertyName
fn fold_custom_property_name( &mut self, node: CustomPropertyName, ) -> CustomPropertyName
Visit a node of type
CustomPropertyName
. Read more§fn fold_dashed_ident(&mut self, node: DashedIdent) -> DashedIdent
fn fold_dashed_ident(&mut self, node: DashedIdent) -> DashedIdent
Visit a node of type
DashedIdent
. Read more§fn fold_declaration(&mut self, node: Declaration) -> Declaration
fn fold_declaration(&mut self, node: Declaration) -> Declaration
Visit a node of type
Declaration
. Read more§fn fold_declaration_name(&mut self, node: DeclarationName) -> DeclarationName
fn fold_declaration_name(&mut self, node: DeclarationName) -> DeclarationName
Visit a node of type
DeclarationName
. Read more§fn fold_declaration_or_at_rule(
&mut self,
node: DeclarationOrAtRule,
) -> DeclarationOrAtRule
fn fold_declaration_or_at_rule( &mut self, node: DeclarationOrAtRule, ) -> DeclarationOrAtRule
Visit a node of type
DeclarationOrAtRule
. Read more§fn fold_delimiter(&mut self, node: Delimiter) -> Delimiter
fn fold_delimiter(&mut self, node: Delimiter) -> Delimiter
Visit a node of type
Delimiter
. Read more§fn fold_delimiter_value(&mut self, node: DelimiterValue) -> DelimiterValue
fn fold_delimiter_value(&mut self, node: DelimiterValue) -> DelimiterValue
Visit a node of type
DelimiterValue
. Read more§fn fold_dimension(&mut self, node: Dimension) -> Dimension
fn fold_dimension(&mut self, node: Dimension) -> Dimension
Visit a node of type
Dimension
. Read more§fn fold_dimension_token(&mut self, node: DimensionToken) -> DimensionToken
fn fold_dimension_token(&mut self, node: DimensionToken) -> DimensionToken
Visit a node of type
DimensionToken
. Read more§fn fold_document_prelude(&mut self, node: DocumentPrelude) -> DocumentPrelude
fn fold_document_prelude(&mut self, node: DocumentPrelude) -> DocumentPrelude
Visit a node of type
DocumentPrelude
. Read more§fn fold_document_prelude_matching_function(
&mut self,
node: DocumentPreludeMatchingFunction,
) -> DocumentPreludeMatchingFunction
fn fold_document_prelude_matching_function( &mut self, node: DocumentPreludeMatchingFunction, ) -> DocumentPreludeMatchingFunction
Visit a node of type
DocumentPreludeMatchingFunction
. Read more§fn fold_document_prelude_matching_functions(
&mut self,
node: Vec<DocumentPreludeMatchingFunction>,
) -> Vec<DocumentPreludeMatchingFunction>
fn fold_document_prelude_matching_functions( &mut self, node: Vec<DocumentPreludeMatchingFunction>, ) -> Vec<DocumentPreludeMatchingFunction>
Visit a node of type
Vec < DocumentPreludeMatchingFunction >
. Read more§fn fold_extension_name(&mut self, node: ExtensionName) -> ExtensionName
fn fold_extension_name(&mut self, node: ExtensionName) -> ExtensionName
Visit a node of type
ExtensionName
. Read more§fn fold_family_name(&mut self, node: FamilyName) -> FamilyName
fn fold_family_name(&mut self, node: FamilyName) -> FamilyName
Visit a node of type
FamilyName
. Read more§fn fold_family_names(&mut self, node: Vec<FamilyName>) -> Vec<FamilyName>
fn fold_family_names(&mut self, node: Vec<FamilyName>) -> Vec<FamilyName>
Visit a node of type
Vec < FamilyName >
. Read more§fn fold_font_feature_values_prelude(
&mut self,
node: FontFeatureValuesPrelude,
) -> FontFeatureValuesPrelude
fn fold_font_feature_values_prelude( &mut self, node: FontFeatureValuesPrelude, ) -> FontFeatureValuesPrelude
Visit a node of type
FontFeatureValuesPrelude
. Read more§fn fold_forgiving_complex_selector(
&mut self,
node: ForgivingComplexSelector,
) -> ForgivingComplexSelector
fn fold_forgiving_complex_selector( &mut self, node: ForgivingComplexSelector, ) -> ForgivingComplexSelector
Visit a node of type
ForgivingComplexSelector
. Read more§fn fold_forgiving_complex_selectors(
&mut self,
node: Vec<ForgivingComplexSelector>,
) -> Vec<ForgivingComplexSelector>
fn fold_forgiving_complex_selectors( &mut self, node: Vec<ForgivingComplexSelector>, ) -> Vec<ForgivingComplexSelector>
Visit a node of type
Vec < ForgivingComplexSelector >
. Read more§fn fold_forgiving_relative_selector(
&mut self,
node: ForgivingRelativeSelector,
) -> ForgivingRelativeSelector
fn fold_forgiving_relative_selector( &mut self, node: ForgivingRelativeSelector, ) -> ForgivingRelativeSelector
Visit a node of type
ForgivingRelativeSelector
. Read more§fn fold_forgiving_relative_selector_list(
&mut self,
node: ForgivingRelativeSelectorList,
) -> ForgivingRelativeSelectorList
fn fold_forgiving_relative_selector_list( &mut self, node: ForgivingRelativeSelectorList, ) -> ForgivingRelativeSelectorList
Visit a node of type
ForgivingRelativeSelectorList
. Read more§fn fold_forgiving_relative_selectors(
&mut self,
node: Vec<ForgivingRelativeSelector>,
) -> Vec<ForgivingRelativeSelector>
fn fold_forgiving_relative_selectors( &mut self, node: Vec<ForgivingRelativeSelector>, ) -> Vec<ForgivingRelativeSelector>
Visit a node of type
Vec < ForgivingRelativeSelector >
. Read more§fn fold_forgiving_selector_list(
&mut self,
node: ForgivingSelectorList,
) -> ForgivingSelectorList
fn fold_forgiving_selector_list( &mut self, node: ForgivingSelectorList, ) -> ForgivingSelectorList
Visit a node of type
ForgivingSelectorList
. Read more§fn fold_frequency(&mut self, node: Frequency) -> Frequency
fn fold_frequency(&mut self, node: Frequency) -> Frequency
Visit a node of type
Frequency
. Read more§fn fold_frequency_percentage(
&mut self,
node: FrequencyPercentage,
) -> FrequencyPercentage
fn fold_frequency_percentage( &mut self, node: FrequencyPercentage, ) -> FrequencyPercentage
Visit a node of type
FrequencyPercentage
. Read more§fn fold_function(&mut self, node: Function) -> Function
fn fold_function(&mut self, node: Function) -> Function
Visit a node of type
Function
. Read more§fn fold_function_name(&mut self, node: FunctionName) -> FunctionName
fn fold_function_name(&mut self, node: FunctionName) -> FunctionName
Visit a node of type
FunctionName
. Read more§fn fold_general_enclosed(&mut self, node: GeneralEnclosed) -> GeneralEnclosed
fn fold_general_enclosed(&mut self, node: GeneralEnclosed) -> GeneralEnclosed
Visit a node of type
GeneralEnclosed
. Read more§fn fold_hex_color(&mut self, node: HexColor) -> HexColor
fn fold_hex_color(&mut self, node: HexColor) -> HexColor
Visit a node of type
HexColor
. Read more§fn fold_id_selector(&mut self, node: IdSelector) -> IdSelector
fn fold_id_selector(&mut self, node: IdSelector) -> IdSelector
Visit a node of type
IdSelector
. Read more§fn fold_ident(&mut self, node: Ident) -> Ident
fn fold_ident(&mut self, node: Ident) -> Ident
Visit a node of type
Ident
. Read more§fn fold_idents(&mut self, node: Vec<Ident>) -> Vec<Ident>
fn fold_idents(&mut self, node: Vec<Ident>) -> Vec<Ident>
Visit a node of type
Vec < Ident >
. Read more§fn fold_import_conditions(&mut self, node: ImportConditions) -> ImportConditions
fn fold_import_conditions(&mut self, node: ImportConditions) -> ImportConditions
Visit a node of type
ImportConditions
. Read more§fn fold_import_href(&mut self, node: ImportHref) -> ImportHref
fn fold_import_href(&mut self, node: ImportHref) -> ImportHref
Visit a node of type
ImportHref
. Read more§fn fold_import_layer_name(&mut self, node: ImportLayerName) -> ImportLayerName
fn fold_import_layer_name(&mut self, node: ImportLayerName) -> ImportLayerName
Visit a node of type
ImportLayerName
. Read more§fn fold_import_prelude(&mut self, node: ImportPrelude) -> ImportPrelude
fn fold_import_prelude(&mut self, node: ImportPrelude) -> ImportPrelude
Visit a node of type
ImportPrelude
. Read more§fn fold_important_flag(&mut self, node: ImportantFlag) -> ImportantFlag
fn fold_important_flag(&mut self, node: ImportantFlag) -> ImportantFlag
Visit a node of type
ImportantFlag
. Read more§fn fold_integer(&mut self, node: Integer) -> Integer
fn fold_integer(&mut self, node: Integer) -> Integer
Visit a node of type
Integer
. Read more§fn fold_keyframe_block(&mut self, node: KeyframeBlock) -> KeyframeBlock
fn fold_keyframe_block(&mut self, node: KeyframeBlock) -> KeyframeBlock
Visit a node of type
KeyframeBlock
. Read more§fn fold_keyframe_selector(&mut self, node: KeyframeSelector) -> KeyframeSelector
fn fold_keyframe_selector(&mut self, node: KeyframeSelector) -> KeyframeSelector
Visit a node of type
KeyframeSelector
. Read more§fn fold_keyframe_selectors(
&mut self,
node: Vec<KeyframeSelector>,
) -> Vec<KeyframeSelector>
fn fold_keyframe_selectors( &mut self, node: Vec<KeyframeSelector>, ) -> Vec<KeyframeSelector>
Visit a node of type
Vec < KeyframeSelector >
. Read more§fn fold_keyframes_name(&mut self, node: KeyframesName) -> KeyframesName
fn fold_keyframes_name(&mut self, node: KeyframesName) -> KeyframesName
Visit a node of type
KeyframesName
. Read more§fn fold_keyframes_pseudo_function(
&mut self,
node: KeyframesPseudoFunction,
) -> KeyframesPseudoFunction
fn fold_keyframes_pseudo_function( &mut self, node: KeyframesPseudoFunction, ) -> KeyframesPseudoFunction
Visit a node of type
KeyframesPseudoFunction
. Read more§fn fold_keyframes_pseudo_prefix(
&mut self,
node: KeyframesPseudoPrefix,
) -> KeyframesPseudoPrefix
fn fold_keyframes_pseudo_prefix( &mut self, node: KeyframesPseudoPrefix, ) -> KeyframesPseudoPrefix
Visit a node of type
KeyframesPseudoPrefix
. Read more§fn fold_layer_name(&mut self, node: LayerName) -> LayerName
fn fold_layer_name(&mut self, node: LayerName) -> LayerName
Visit a node of type
LayerName
. Read more§fn fold_layer_name_list(&mut self, node: LayerNameList) -> LayerNameList
fn fold_layer_name_list(&mut self, node: LayerNameList) -> LayerNameList
Visit a node of type
LayerNameList
. Read more§fn fold_layer_names(&mut self, node: Vec<LayerName>) -> Vec<LayerName>
fn fold_layer_names(&mut self, node: Vec<LayerName>) -> Vec<LayerName>
Visit a node of type
Vec < LayerName >
. Read more§fn fold_layer_prelude(&mut self, node: LayerPrelude) -> LayerPrelude
fn fold_layer_prelude(&mut self, node: LayerPrelude) -> LayerPrelude
Visit a node of type
LayerPrelude
. Read more§fn fold_length(&mut self, node: Length) -> Length
fn fold_length(&mut self, node: Length) -> Length
Visit a node of type
Length
. Read more§fn fold_length_percentage(&mut self, node: LengthPercentage) -> LengthPercentage
fn fold_length_percentage(&mut self, node: LengthPercentage) -> LengthPercentage
Visit a node of type
LengthPercentage
. Read more§fn fold_list_of_component_values(
&mut self,
node: ListOfComponentValues,
) -> ListOfComponentValues
fn fold_list_of_component_values( &mut self, node: ListOfComponentValues, ) -> ListOfComponentValues
Visit a node of type
ListOfComponentValues
. Read more§fn fold_media_and(&mut self, node: MediaAnd) -> MediaAnd
fn fold_media_and(&mut self, node: MediaAnd) -> MediaAnd
Visit a node of type
MediaAnd
. Read more§fn fold_media_condition(&mut self, node: MediaCondition) -> MediaCondition
fn fold_media_condition(&mut self, node: MediaCondition) -> MediaCondition
Visit a node of type
MediaCondition
. Read more§fn fold_media_condition_all_type(
&mut self,
node: MediaConditionAllType,
) -> MediaConditionAllType
fn fold_media_condition_all_type( &mut self, node: MediaConditionAllType, ) -> MediaConditionAllType
Visit a node of type
MediaConditionAllType
. Read more§fn fold_media_condition_all_types(
&mut self,
node: Vec<MediaConditionAllType>,
) -> Vec<MediaConditionAllType>
fn fold_media_condition_all_types( &mut self, node: Vec<MediaConditionAllType>, ) -> Vec<MediaConditionAllType>
Visit a node of type
Vec < MediaConditionAllType >
. Read more§fn fold_media_condition_type(
&mut self,
node: MediaConditionType,
) -> MediaConditionType
fn fold_media_condition_type( &mut self, node: MediaConditionType, ) -> MediaConditionType
Visit a node of type
MediaConditionType
. Read more§fn fold_media_condition_without_or(
&mut self,
node: MediaConditionWithoutOr,
) -> MediaConditionWithoutOr
fn fold_media_condition_without_or( &mut self, node: MediaConditionWithoutOr, ) -> MediaConditionWithoutOr
Visit a node of type
MediaConditionWithoutOr
. Read more§fn fold_media_condition_without_or_type(
&mut self,
node: MediaConditionWithoutOrType,
) -> MediaConditionWithoutOrType
fn fold_media_condition_without_or_type( &mut self, node: MediaConditionWithoutOrType, ) -> MediaConditionWithoutOrType
Visit a node of type
MediaConditionWithoutOrType
. Read more§fn fold_media_condition_without_or_types(
&mut self,
node: Vec<MediaConditionWithoutOrType>,
) -> Vec<MediaConditionWithoutOrType>
fn fold_media_condition_without_or_types( &mut self, node: Vec<MediaConditionWithoutOrType>, ) -> Vec<MediaConditionWithoutOrType>
Visit a node of type
Vec < MediaConditionWithoutOrType >
. Read more§fn fold_media_feature(&mut self, node: MediaFeature) -> MediaFeature
fn fold_media_feature(&mut self, node: MediaFeature) -> MediaFeature
Visit a node of type
MediaFeature
. Read more§fn fold_media_feature_boolean(
&mut self,
node: MediaFeatureBoolean,
) -> MediaFeatureBoolean
fn fold_media_feature_boolean( &mut self, node: MediaFeatureBoolean, ) -> MediaFeatureBoolean
Visit a node of type
MediaFeatureBoolean
. Read more§fn fold_media_feature_name(
&mut self,
node: MediaFeatureName,
) -> MediaFeatureName
fn fold_media_feature_name( &mut self, node: MediaFeatureName, ) -> MediaFeatureName
Visit a node of type
MediaFeatureName
. Read more§fn fold_media_feature_plain(
&mut self,
node: MediaFeaturePlain,
) -> MediaFeaturePlain
fn fold_media_feature_plain( &mut self, node: MediaFeaturePlain, ) -> MediaFeaturePlain
Visit a node of type
MediaFeaturePlain
. Read more§fn fold_media_feature_range(
&mut self,
node: MediaFeatureRange,
) -> MediaFeatureRange
fn fold_media_feature_range( &mut self, node: MediaFeatureRange, ) -> MediaFeatureRange
Visit a node of type
MediaFeatureRange
. Read more§fn fold_media_feature_range_comparison(
&mut self,
node: MediaFeatureRangeComparison,
) -> MediaFeatureRangeComparison
fn fold_media_feature_range_comparison( &mut self, node: MediaFeatureRangeComparison, ) -> MediaFeatureRangeComparison
Visit a node of type
MediaFeatureRangeComparison
. Read more§fn fold_media_feature_range_interval(
&mut self,
node: MediaFeatureRangeInterval,
) -> MediaFeatureRangeInterval
fn fold_media_feature_range_interval( &mut self, node: MediaFeatureRangeInterval, ) -> MediaFeatureRangeInterval
Visit a node of type
MediaFeatureRangeInterval
. Read more§fn fold_media_feature_value(
&mut self,
node: MediaFeatureValue,
) -> MediaFeatureValue
fn fold_media_feature_value( &mut self, node: MediaFeatureValue, ) -> MediaFeatureValue
Visit a node of type
MediaFeatureValue
. Read more§fn fold_media_in_parens(&mut self, node: MediaInParens) -> MediaInParens
fn fold_media_in_parens(&mut self, node: MediaInParens) -> MediaInParens
Visit a node of type
MediaInParens
. Read more§fn fold_media_not(&mut self, node: MediaNot) -> MediaNot
fn fold_media_not(&mut self, node: MediaNot) -> MediaNot
Visit a node of type
MediaNot
. Read more§fn fold_media_or(&mut self, node: MediaOr) -> MediaOr
fn fold_media_or(&mut self, node: MediaOr) -> MediaOr
Visit a node of type
MediaOr
. Read more§fn fold_media_query(&mut self, node: MediaQuery) -> MediaQuery
fn fold_media_query(&mut self, node: MediaQuery) -> MediaQuery
Visit a node of type
MediaQuery
. Read more§fn fold_media_query_list(&mut self, node: MediaQueryList) -> MediaQueryList
fn fold_media_query_list(&mut self, node: MediaQueryList) -> MediaQueryList
Visit a node of type
MediaQueryList
. Read more§fn fold_media_querys(&mut self, node: Vec<MediaQuery>) -> Vec<MediaQuery>
fn fold_media_querys(&mut self, node: Vec<MediaQuery>) -> Vec<MediaQuery>
Visit a node of type
Vec < MediaQuery >
. Read more§fn fold_media_type(&mut self, node: MediaType) -> MediaType
fn fold_media_type(&mut self, node: MediaType) -> MediaType
Visit a node of type
MediaType
. Read more§fn fold_named_namespace(&mut self, node: NamedNamespace) -> NamedNamespace
fn fold_named_namespace(&mut self, node: NamedNamespace) -> NamedNamespace
Visit a node of type
NamedNamespace
. Read more§fn fold_namespace(&mut self, node: Namespace) -> Namespace
fn fold_namespace(&mut self, node: Namespace) -> Namespace
Visit a node of type
Namespace
. Read more§fn fold_namespace_prefix(&mut self, node: NamespacePrefix) -> NamespacePrefix
fn fold_namespace_prefix(&mut self, node: NamespacePrefix) -> NamespacePrefix
Visit a node of type
NamespacePrefix
. Read more§fn fold_namespace_prelude(&mut self, node: NamespacePrelude) -> NamespacePrelude
fn fold_namespace_prelude(&mut self, node: NamespacePrelude) -> NamespacePrelude
Visit a node of type
NamespacePrelude
. Read more§fn fold_namespace_prelude_uri(
&mut self,
node: NamespacePreludeUri,
) -> NamespacePreludeUri
fn fold_namespace_prelude_uri( &mut self, node: NamespacePreludeUri, ) -> NamespacePreludeUri
Visit a node of type
NamespacePreludeUri
. Read more§fn fold_nesting_selector(&mut self, node: NestingSelector) -> NestingSelector
fn fold_nesting_selector(&mut self, node: NestingSelector) -> NestingSelector
Visit a node of type
NestingSelector
. Read more§fn fold_number(&mut self, node: Number) -> Number
fn fold_number(&mut self, node: Number) -> Number
Visit a node of type
Number
. Read more§fn fold_number_type(&mut self, node: NumberType) -> NumberType
fn fold_number_type(&mut self, node: NumberType) -> NumberType
Visit a node of type
NumberType
. Read more§fn fold_opt_at_rule_prelude(
&mut self,
node: Option<Box<AtRulePrelude>>,
) -> Option<Box<AtRulePrelude>>
fn fold_opt_at_rule_prelude( &mut self, node: Option<Box<AtRulePrelude>>, ) -> Option<Box<AtRulePrelude>>
Visit a node of type
Option < Box < AtRulePrelude > >
. Read more§fn fold_opt_atom(&mut self, node: Option<Atom>) -> Option<Atom>
fn fold_opt_atom(&mut self, node: Option<Atom>) -> Option<Atom>
Visit a node of type
Option < swc_atoms :: Atom >
. Read more§fn fold_opt_attribute_selector_matcher(
&mut self,
node: Option<AttributeSelectorMatcher>,
) -> Option<AttributeSelectorMatcher>
fn fold_opt_attribute_selector_matcher( &mut self, node: Option<AttributeSelectorMatcher>, ) -> Option<AttributeSelectorMatcher>
Visit a node of type
Option < AttributeSelectorMatcher >
. Read more§fn fold_opt_attribute_selector_modifier(
&mut self,
node: Option<AttributeSelectorModifier>,
) -> Option<AttributeSelectorModifier>
fn fold_opt_attribute_selector_modifier( &mut self, node: Option<AttributeSelectorModifier>, ) -> Option<AttributeSelectorModifier>
Visit a node of type
Option < AttributeSelectorModifier >
. Read more§fn fold_opt_attribute_selector_value(
&mut self,
node: Option<AttributeSelectorValue>,
) -> Option<AttributeSelectorValue>
fn fold_opt_attribute_selector_value( &mut self, node: Option<AttributeSelectorValue>, ) -> Option<AttributeSelectorValue>
Visit a node of type
Option < AttributeSelectorValue >
. Read more§fn fold_opt_combinator(
&mut self,
node: Option<Combinator>,
) -> Option<Combinator>
fn fold_opt_combinator( &mut self, node: Option<Combinator>, ) -> Option<Combinator>
Visit a node of type
Option < Combinator >
. Read more§fn fold_opt_container_name(
&mut self,
node: Option<ContainerName>,
) -> Option<ContainerName>
fn fold_opt_container_name( &mut self, node: Option<ContainerName>, ) -> Option<ContainerName>
Visit a node of type
Option < ContainerName >
. Read more§fn fold_opt_forgiving_selector_list(
&mut self,
node: Option<ForgivingSelectorList>,
) -> Option<ForgivingSelectorList>
fn fold_opt_forgiving_selector_list( &mut self, node: Option<ForgivingSelectorList>, ) -> Option<ForgivingSelectorList>
Visit a node of type
Option < ForgivingSelectorList >
. Read more§fn fold_opt_function(
&mut self,
node: Option<Box<Function>>,
) -> Option<Box<Function>>
fn fold_opt_function( &mut self, node: Option<Box<Function>>, ) -> Option<Box<Function>>
Visit a node of type
Option < Box < Function > >
. Read more§fn fold_opt_ident(&mut self, node: Option<Ident>) -> Option<Ident>
fn fold_opt_ident(&mut self, node: Option<Ident>) -> Option<Ident>
Visit a node of type
Option < Ident >
. Read more§fn fold_opt_import_conditions(
&mut self,
node: Option<Box<ImportConditions>>,
) -> Option<Box<ImportConditions>>
fn fold_opt_import_conditions( &mut self, node: Option<Box<ImportConditions>>, ) -> Option<Box<ImportConditions>>
Visit a node of type
Option < Box < ImportConditions > >
. Read more§fn fold_opt_import_layer_name(
&mut self,
node: Option<Box<ImportLayerName>>,
) -> Option<Box<ImportLayerName>>
fn fold_opt_import_layer_name( &mut self, node: Option<Box<ImportLayerName>>, ) -> Option<Box<ImportLayerName>>
Visit a node of type
Option < Box < ImportLayerName > >
. Read more§fn fold_opt_important_flag(
&mut self,
node: Option<ImportantFlag>,
) -> Option<ImportantFlag>
fn fold_opt_important_flag( &mut self, node: Option<ImportantFlag>, ) -> Option<ImportantFlag>
Visit a node of type
Option < ImportantFlag >
. Read more§fn fold_opt_media_condition_type(
&mut self,
node: Option<Box<MediaConditionType>>,
) -> Option<Box<MediaConditionType>>
fn fold_opt_media_condition_type( &mut self, node: Option<Box<MediaConditionType>>, ) -> Option<Box<MediaConditionType>>
Visit a node of type
Option < Box < MediaConditionType > >
. Read more§fn fold_opt_media_query_list(
&mut self,
node: Option<Box<MediaQueryList>>,
) -> Option<Box<MediaQueryList>>
fn fold_opt_media_query_list( &mut self, node: Option<Box<MediaQueryList>>, ) -> Option<Box<MediaQueryList>>
Visit a node of type
Option < Box < MediaQueryList > >
. Read more§fn fold_opt_media_type(&mut self, node: Option<MediaType>) -> Option<MediaType>
fn fold_opt_media_type(&mut self, node: Option<MediaType>) -> Option<MediaType>
Visit a node of type
Option < MediaType >
. Read more§fn fold_opt_namespace(&mut self, node: Option<Namespace>) -> Option<Namespace>
fn fold_opt_namespace(&mut self, node: Option<Namespace>) -> Option<Namespace>
Visit a node of type
Option < Namespace >
. Read more§fn fold_opt_namespace_prefix(
&mut self,
node: Option<NamespacePrefix>,
) -> Option<NamespacePrefix>
fn fold_opt_namespace_prefix( &mut self, node: Option<NamespacePrefix>, ) -> Option<NamespacePrefix>
Visit a node of type
Option < NamespacePrefix >
. Read more§fn fold_opt_nesting_selector(
&mut self,
node: Option<NestingSelector>,
) -> Option<NestingSelector>
fn fold_opt_nesting_selector( &mut self, node: Option<NestingSelector>, ) -> Option<NestingSelector>
Visit a node of type
Option < NestingSelector >
. Read more§fn fold_opt_number(&mut self, node: Option<Number>) -> Option<Number>
fn fold_opt_number(&mut self, node: Option<Number>) -> Option<Number>
Visit a node of type
Option < Number >
. Read more§fn fold_opt_page_selector_pseudos(
&mut self,
node: Option<Vec<PageSelectorPseudo>>,
) -> Option<Vec<PageSelectorPseudo>>
fn fold_opt_page_selector_pseudos( &mut self, node: Option<Vec<PageSelectorPseudo>>, ) -> Option<Vec<PageSelectorPseudo>>
Visit a node of type
Option < Vec < PageSelectorPseudo > >
. Read more§fn fold_opt_page_selector_type(
&mut self,
node: Option<PageSelectorType>,
) -> Option<PageSelectorType>
fn fold_opt_page_selector_type( &mut self, node: Option<PageSelectorType>, ) -> Option<PageSelectorType>
Visit a node of type
Option < PageSelectorType >
. Read more§fn fold_opt_pseudo_class_selector_childrens(
&mut self,
node: Option<Vec<PseudoClassSelectorChildren>>,
) -> Option<Vec<PseudoClassSelectorChildren>>
fn fold_opt_pseudo_class_selector_childrens( &mut self, node: Option<Vec<PseudoClassSelectorChildren>>, ) -> Option<Vec<PseudoClassSelectorChildren>>
Visit a node of type
Option < Vec < PseudoClassSelectorChildren > >
. Read more§fn fold_opt_pseudo_element_selector_childrens(
&mut self,
node: Option<Vec<PseudoElementSelectorChildren>>,
) -> Option<Vec<PseudoElementSelectorChildren>>
fn fold_opt_pseudo_element_selector_childrens( &mut self, node: Option<Vec<PseudoElementSelectorChildren>>, ) -> Option<Vec<PseudoElementSelectorChildren>>
Visit a node of type
Option < Vec < PseudoElementSelectorChildren > >
. Read more§fn fold_opt_simple_block(
&mut self,
node: Option<SimpleBlock>,
) -> Option<SimpleBlock>
fn fold_opt_simple_block( &mut self, node: Option<SimpleBlock>, ) -> Option<SimpleBlock>
Visit a node of type
Option < SimpleBlock >
. Read more§fn fold_opt_type_selector(
&mut self,
node: Option<Box<TypeSelector>>,
) -> Option<Box<TypeSelector>>
fn fold_opt_type_selector( &mut self, node: Option<Box<TypeSelector>>, ) -> Option<Box<TypeSelector>>
Visit a node of type
Option < Box < TypeSelector > >
. Read more§fn fold_opt_url_modifiers(
&mut self,
node: Option<Vec<UrlModifier>>,
) -> Option<Vec<UrlModifier>>
fn fold_opt_url_modifiers( &mut self, node: Option<Vec<UrlModifier>>, ) -> Option<Vec<UrlModifier>>
Visit a node of type
Option < Vec < UrlModifier > >
. Read more§fn fold_opt_url_value(
&mut self,
node: Option<Box<UrlValue>>,
) -> Option<Box<UrlValue>>
fn fold_opt_url_value( &mut self, node: Option<Box<UrlValue>>, ) -> Option<Box<UrlValue>>
Visit a node of type
Option < Box < UrlValue > >
. Read more§fn fold_page_selector(&mut self, node: PageSelector) -> PageSelector
fn fold_page_selector(&mut self, node: PageSelector) -> PageSelector
Visit a node of type
PageSelector
. Read more§fn fold_page_selector_list(
&mut self,
node: PageSelectorList,
) -> PageSelectorList
fn fold_page_selector_list( &mut self, node: PageSelectorList, ) -> PageSelectorList
Visit a node of type
PageSelectorList
. Read more§fn fold_page_selector_pseudo(
&mut self,
node: PageSelectorPseudo,
) -> PageSelectorPseudo
fn fold_page_selector_pseudo( &mut self, node: PageSelectorPseudo, ) -> PageSelectorPseudo
Visit a node of type
PageSelectorPseudo
. Read more§fn fold_page_selector_pseudos(
&mut self,
node: Vec<PageSelectorPseudo>,
) -> Vec<PageSelectorPseudo>
fn fold_page_selector_pseudos( &mut self, node: Vec<PageSelectorPseudo>, ) -> Vec<PageSelectorPseudo>
Visit a node of type
Vec < PageSelectorPseudo >
. Read more§fn fold_page_selector_type(
&mut self,
node: PageSelectorType,
) -> PageSelectorType
fn fold_page_selector_type( &mut self, node: PageSelectorType, ) -> PageSelectorType
Visit a node of type
PageSelectorType
. Read more§fn fold_page_selectors(&mut self, node: Vec<PageSelector>) -> Vec<PageSelector>
fn fold_page_selectors(&mut self, node: Vec<PageSelector>) -> Vec<PageSelector>
Visit a node of type
Vec < PageSelector >
. Read more§fn fold_percentage(&mut self, node: Percentage) -> Percentage
fn fold_percentage(&mut self, node: Percentage) -> Percentage
Visit a node of type
Percentage
. Read more§fn fold_pseudo_class_selector(
&mut self,
node: PseudoClassSelector,
) -> PseudoClassSelector
fn fold_pseudo_class_selector( &mut self, node: PseudoClassSelector, ) -> PseudoClassSelector
Visit a node of type
PseudoClassSelector
. Read more§fn fold_pseudo_class_selector_children(
&mut self,
node: PseudoClassSelectorChildren,
) -> PseudoClassSelectorChildren
fn fold_pseudo_class_selector_children( &mut self, node: PseudoClassSelectorChildren, ) -> PseudoClassSelectorChildren
Visit a node of type
PseudoClassSelectorChildren
. Read more§fn fold_pseudo_class_selector_childrens(
&mut self,
node: Vec<PseudoClassSelectorChildren>,
) -> Vec<PseudoClassSelectorChildren>
fn fold_pseudo_class_selector_childrens( &mut self, node: Vec<PseudoClassSelectorChildren>, ) -> Vec<PseudoClassSelectorChildren>
Visit a node of type
Vec < PseudoClassSelectorChildren >
. Read more§fn fold_pseudo_element_selector(
&mut self,
node: PseudoElementSelector,
) -> PseudoElementSelector
fn fold_pseudo_element_selector( &mut self, node: PseudoElementSelector, ) -> PseudoElementSelector
Visit a node of type
PseudoElementSelector
. Read more§fn fold_pseudo_element_selector_children(
&mut self,
node: PseudoElementSelectorChildren,
) -> PseudoElementSelectorChildren
fn fold_pseudo_element_selector_children( &mut self, node: PseudoElementSelectorChildren, ) -> PseudoElementSelectorChildren
Visit a node of type
PseudoElementSelectorChildren
. Read more§fn fold_pseudo_element_selector_childrens(
&mut self,
node: Vec<PseudoElementSelectorChildren>,
) -> Vec<PseudoElementSelectorChildren>
fn fold_pseudo_element_selector_childrens( &mut self, node: Vec<PseudoElementSelectorChildren>, ) -> Vec<PseudoElementSelectorChildren>
Visit a node of type
Vec < PseudoElementSelectorChildren >
. Read more§fn fold_qualified_rule(&mut self, node: QualifiedRule) -> QualifiedRule
fn fold_qualified_rule(&mut self, node: QualifiedRule) -> QualifiedRule
Visit a node of type
QualifiedRule
. Read more§fn fold_qualified_rule_prelude(
&mut self,
node: QualifiedRulePrelude,
) -> QualifiedRulePrelude
fn fold_qualified_rule_prelude( &mut self, node: QualifiedRulePrelude, ) -> QualifiedRulePrelude
Visit a node of type
QualifiedRulePrelude
. Read more§fn fold_query_in_parens(&mut self, node: QueryInParens) -> QueryInParens
fn fold_query_in_parens(&mut self, node: QueryInParens) -> QueryInParens
Visit a node of type
QueryInParens
. Read more§fn fold_ratio(&mut self, node: Ratio) -> Ratio
fn fold_ratio(&mut self, node: Ratio) -> Ratio
Visit a node of type
Ratio
. Read more§fn fold_relative_selector(&mut self, node: RelativeSelector) -> RelativeSelector
fn fold_relative_selector(&mut self, node: RelativeSelector) -> RelativeSelector
Visit a node of type
RelativeSelector
. Read more§fn fold_relative_selector_list(
&mut self,
node: RelativeSelectorList,
) -> RelativeSelectorList
fn fold_relative_selector_list( &mut self, node: RelativeSelectorList, ) -> RelativeSelectorList
Visit a node of type
RelativeSelectorList
. Read more§fn fold_relative_selectors(
&mut self,
node: Vec<RelativeSelector>,
) -> Vec<RelativeSelector>
fn fold_relative_selectors( &mut self, node: Vec<RelativeSelector>, ) -> Vec<RelativeSelector>
Visit a node of type
Vec < RelativeSelector >
. Read more§fn fold_resolution(&mut self, node: Resolution) -> Resolution
fn fold_resolution(&mut self, node: Resolution) -> Resolution
Visit a node of type
Resolution
. Read more§fn fold_rules(&mut self, node: Vec<Rule>) -> Vec<Rule>
fn fold_rules(&mut self, node: Vec<Rule>) -> Vec<Rule>
Visit a node of type
Vec < Rule >
. Read more§fn fold_scope_range(&mut self, node: ScopeRange) -> ScopeRange
fn fold_scope_range(&mut self, node: ScopeRange) -> ScopeRange
Visit a node of type
ScopeRange
. Read more§fn fold_selector_list(&mut self, node: SelectorList) -> SelectorList
fn fold_selector_list(&mut self, node: SelectorList) -> SelectorList
Visit a node of type
SelectorList
. Read more§fn fold_sequence_of_custom_idents(
&mut self,
node: SequenceOfCustomIdents,
) -> SequenceOfCustomIdents
fn fold_sequence_of_custom_idents( &mut self, node: SequenceOfCustomIdents, ) -> SequenceOfCustomIdents
Visit a node of type
SequenceOfCustomIdents
. Read more§fn fold_simple_block(&mut self, node: SimpleBlock) -> SimpleBlock
fn fold_simple_block(&mut self, node: SimpleBlock) -> SimpleBlock
Visit a node of type
SimpleBlock
. Read more§fn fold_size_feature(&mut self, node: SizeFeature) -> SizeFeature
fn fold_size_feature(&mut self, node: SizeFeature) -> SizeFeature
Visit a node of type
SizeFeature
. Read more§fn fold_size_feature_boolean(
&mut self,
node: SizeFeatureBoolean,
) -> SizeFeatureBoolean
fn fold_size_feature_boolean( &mut self, node: SizeFeatureBoolean, ) -> SizeFeatureBoolean
Visit a node of type
SizeFeatureBoolean
. Read more§fn fold_size_feature_name(&mut self, node: SizeFeatureName) -> SizeFeatureName
fn fold_size_feature_name(&mut self, node: SizeFeatureName) -> SizeFeatureName
Visit a node of type
SizeFeatureName
. Read more§fn fold_size_feature_plain(
&mut self,
node: SizeFeaturePlain,
) -> SizeFeaturePlain
fn fold_size_feature_plain( &mut self, node: SizeFeaturePlain, ) -> SizeFeaturePlain
Visit a node of type
SizeFeaturePlain
. Read more§fn fold_size_feature_range(
&mut self,
node: SizeFeatureRange,
) -> SizeFeatureRange
fn fold_size_feature_range( &mut self, node: SizeFeatureRange, ) -> SizeFeatureRange
Visit a node of type
SizeFeatureRange
. Read more§fn fold_size_feature_range_comparison(
&mut self,
node: SizeFeatureRangeComparison,
) -> SizeFeatureRangeComparison
fn fold_size_feature_range_comparison( &mut self, node: SizeFeatureRangeComparison, ) -> SizeFeatureRangeComparison
Visit a node of type
SizeFeatureRangeComparison
. Read more§fn fold_size_feature_range_interval(
&mut self,
node: SizeFeatureRangeInterval,
) -> SizeFeatureRangeInterval
fn fold_size_feature_range_interval( &mut self, node: SizeFeatureRangeInterval, ) -> SizeFeatureRangeInterval
Visit a node of type
SizeFeatureRangeInterval
. Read more§fn fold_size_feature_value(
&mut self,
node: SizeFeatureValue,
) -> SizeFeatureValue
fn fold_size_feature_value( &mut self, node: SizeFeatureValue, ) -> SizeFeatureValue
Visit a node of type
SizeFeatureValue
. Read more§fn fold_style_block(&mut self, node: StyleBlock) -> StyleBlock
fn fold_style_block(&mut self, node: StyleBlock) -> StyleBlock
Visit a node of type
StyleBlock
. Read more§fn fold_stylesheet(&mut self, node: Stylesheet) -> Stylesheet
fn fold_stylesheet(&mut self, node: Stylesheet) -> Stylesheet
Visit a node of type
Stylesheet
. Read more§fn fold_subclass_selector(&mut self, node: SubclassSelector) -> SubclassSelector
fn fold_subclass_selector(&mut self, node: SubclassSelector) -> SubclassSelector
Visit a node of type
SubclassSelector
. Read more§fn fold_subclass_selectors(
&mut self,
node: Vec<SubclassSelector>,
) -> Vec<SubclassSelector>
fn fold_subclass_selectors( &mut self, node: Vec<SubclassSelector>, ) -> Vec<SubclassSelector>
Visit a node of type
Vec < SubclassSelector >
. Read more§fn fold_supports_and(&mut self, node: SupportsAnd) -> SupportsAnd
fn fold_supports_and(&mut self, node: SupportsAnd) -> SupportsAnd
Visit a node of type
SupportsAnd
. Read more§fn fold_supports_condition(
&mut self,
node: SupportsCondition,
) -> SupportsCondition
fn fold_supports_condition( &mut self, node: SupportsCondition, ) -> SupportsCondition
Visit a node of type
SupportsCondition
. Read more§fn fold_supports_condition_type(
&mut self,
node: SupportsConditionType,
) -> SupportsConditionType
fn fold_supports_condition_type( &mut self, node: SupportsConditionType, ) -> SupportsConditionType
Visit a node of type
SupportsConditionType
. Read more§fn fold_supports_condition_types(
&mut self,
node: Vec<SupportsConditionType>,
) -> Vec<SupportsConditionType>
fn fold_supports_condition_types( &mut self, node: Vec<SupportsConditionType>, ) -> Vec<SupportsConditionType>
Visit a node of type
Vec < SupportsConditionType >
. Read more§fn fold_supports_feature(&mut self, node: SupportsFeature) -> SupportsFeature
fn fold_supports_feature(&mut self, node: SupportsFeature) -> SupportsFeature
Visit a node of type
SupportsFeature
. Read more§fn fold_supports_in_parens(
&mut self,
node: SupportsInParens,
) -> SupportsInParens
fn fold_supports_in_parens( &mut self, node: SupportsInParens, ) -> SupportsInParens
Visit a node of type
SupportsInParens
. Read more§fn fold_supports_not(&mut self, node: SupportsNot) -> SupportsNot
fn fold_supports_not(&mut self, node: SupportsNot) -> SupportsNot
Visit a node of type
SupportsNot
. Read more§fn fold_supports_or(&mut self, node: SupportsOr) -> SupportsOr
fn fold_supports_or(&mut self, node: SupportsOr) -> SupportsOr
Visit a node of type
SupportsOr
. Read more§fn fold_tag_name_selector(&mut self, node: TagNameSelector) -> TagNameSelector
fn fold_tag_name_selector(&mut self, node: TagNameSelector) -> TagNameSelector
Visit a node of type
TagNameSelector
. Read more§fn fold_time_percentage(&mut self, node: TimePercentage) -> TimePercentage
fn fold_time_percentage(&mut self, node: TimePercentage) -> TimePercentage
Visit a node of type
TimePercentage
. Read more§fn fold_token(&mut self, node: Token) -> Token
fn fold_token(&mut self, node: Token) -> Token
Visit a node of type
Token
. Read more§fn fold_token_and_span(&mut self, node: TokenAndSpan) -> TokenAndSpan
fn fold_token_and_span(&mut self, node: TokenAndSpan) -> TokenAndSpan
Visit a node of type
TokenAndSpan
. Read more§fn fold_type_selector(&mut self, node: TypeSelector) -> TypeSelector
fn fold_type_selector(&mut self, node: TypeSelector) -> TypeSelector
Visit a node of type
TypeSelector
. Read more§fn fold_unicode_range(&mut self, node: UnicodeRange) -> UnicodeRange
fn fold_unicode_range(&mut self, node: UnicodeRange) -> UnicodeRange
Visit a node of type
UnicodeRange
. Read more§fn fold_universal_selector(
&mut self,
node: UniversalSelector,
) -> UniversalSelector
fn fold_universal_selector( &mut self, node: UniversalSelector, ) -> UniversalSelector
Visit a node of type
UniversalSelector
. Read more§fn fold_unknown_dimension(&mut self, node: UnknownDimension) -> UnknownDimension
fn fold_unknown_dimension(&mut self, node: UnknownDimension) -> UnknownDimension
Visit a node of type
UnknownDimension
. Read more§fn fold_url_key_value(&mut self, node: UrlKeyValue) -> UrlKeyValue
fn fold_url_key_value(&mut self, node: UrlKeyValue) -> UrlKeyValue
Visit a node of type
UrlKeyValue
. Read more§fn fold_url_modifier(&mut self, node: UrlModifier) -> UrlModifier
fn fold_url_modifier(&mut self, node: UrlModifier) -> UrlModifier
Visit a node of type
UrlModifier
. Read more§fn fold_url_modifiers(&mut self, node: Vec<UrlModifier>) -> Vec<UrlModifier>
fn fold_url_modifiers(&mut self, node: Vec<UrlModifier>) -> Vec<UrlModifier>
Visit a node of type
Vec < UrlModifier >
. Read more§fn fold_url_value(&mut self, node: UrlValue) -> UrlValue
fn fold_url_value(&mut self, node: UrlValue) -> UrlValue
Visit a node of type
UrlValue
. Read more§fn fold_url_value_raw(&mut self, node: UrlValueRaw) -> UrlValueRaw
fn fold_url_value_raw(&mut self, node: UrlValueRaw) -> UrlValueRaw
Visit a node of type
UrlValueRaw
. Read more§fn fold_wq_name(&mut self, node: WqName) -> WqName
fn fold_wq_name(&mut self, node: WqName) -> WqName
Visit a node of type
WqName
. Read more§impl<V> Visit for Optional<V>where
V: Visit,
impl<V> Visit for Optional<V>where
V: Visit,
§fn visit_accessibility(&mut self, node: &Accessibility)
fn visit_accessibility(&mut self, node: &Accessibility)
Visit a node of type
Accessibility
. Read more§fn visit_array_lit(&mut self, node: &ArrayLit)
fn visit_array_lit(&mut self, node: &ArrayLit)
Visit a node of type
ArrayLit
. Read more§fn visit_array_pat(&mut self, node: &ArrayPat)
fn visit_array_pat(&mut self, node: &ArrayPat)
Visit a node of type
ArrayPat
. Read more§fn visit_arrow_expr(&mut self, node: &ArrowExpr)
fn visit_arrow_expr(&mut self, node: &ArrowExpr)
Visit a node of type
ArrowExpr
. Read more§fn visit_assign_expr(&mut self, node: &AssignExpr)
fn visit_assign_expr(&mut self, node: &AssignExpr)
Visit a node of type
AssignExpr
. Read more§fn visit_assign_op(&mut self, node: &AssignOp)
fn visit_assign_op(&mut self, node: &AssignOp)
Visit a node of type
AssignOp
. Read more§fn visit_assign_pat(&mut self, node: &AssignPat)
fn visit_assign_pat(&mut self, node: &AssignPat)
Visit a node of type
AssignPat
. Read more§fn visit_assign_pat_prop(&mut self, node: &AssignPatProp)
fn visit_assign_pat_prop(&mut self, node: &AssignPatProp)
Visit a node of type
AssignPatProp
. Read more§fn visit_assign_prop(&mut self, node: &AssignProp)
fn visit_assign_prop(&mut self, node: &AssignProp)
Visit a node of type
AssignProp
. Read more§fn visit_assign_target(&mut self, node: &AssignTarget)
fn visit_assign_target(&mut self, node: &AssignTarget)
Visit a node of type
AssignTarget
. Read more§fn visit_assign_target_pat(&mut self, node: &AssignTargetPat)
fn visit_assign_target_pat(&mut self, node: &AssignTargetPat)
Visit a node of type
AssignTargetPat
. Read more§fn visit_atom(&mut self, node: &Atom)
fn visit_atom(&mut self, node: &Atom)
Visit a node of type
swc_atoms :: Atom
. Read more§fn visit_auto_accessor(&mut self, node: &AutoAccessor)
fn visit_auto_accessor(&mut self, node: &AutoAccessor)
Visit a node of type
AutoAccessor
. Read more§fn visit_await_expr(&mut self, node: &AwaitExpr)
fn visit_await_expr(&mut self, node: &AwaitExpr)
Visit a node of type
AwaitExpr
. Read more§fn visit_big_int(&mut self, node: &BigInt)
fn visit_big_int(&mut self, node: &BigInt)
Visit a node of type
BigInt
. Read more§fn visit_big_int_value(&mut self, node: &BigInt)
fn visit_big_int_value(&mut self, node: &BigInt)
Visit a node of type
BigIntValue
. Read more§fn visit_bin_expr(&mut self, node: &BinExpr)
fn visit_bin_expr(&mut self, node: &BinExpr)
Visit a node of type
BinExpr
. Read more§fn visit_binary_op(&mut self, node: &BinaryOp)
fn visit_binary_op(&mut self, node: &BinaryOp)
Visit a node of type
BinaryOp
. Read more§fn visit_binding_ident(&mut self, node: &BindingIdent)
fn visit_binding_ident(&mut self, node: &BindingIdent)
Visit a node of type
BindingIdent
. Read more§fn visit_block_stmt(&mut self, node: &BlockStmt)
fn visit_block_stmt(&mut self, node: &BlockStmt)
Visit a node of type
BlockStmt
. Read more§fn visit_block_stmt_or_expr(&mut self, node: &BlockStmtOrExpr)
fn visit_block_stmt_or_expr(&mut self, node: &BlockStmtOrExpr)
Visit a node of type
BlockStmtOrExpr
. Read more§fn visit_bool(&mut self, node: &Bool)
fn visit_bool(&mut self, node: &Bool)
Visit a node of type
Bool
. Read more§fn visit_break_stmt(&mut self, node: &BreakStmt)
fn visit_break_stmt(&mut self, node: &BreakStmt)
Visit a node of type
BreakStmt
. Read more§fn visit_call_expr(&mut self, node: &CallExpr)
fn visit_call_expr(&mut self, node: &CallExpr)
Visit a node of type
CallExpr
. Read more§fn visit_callee(&mut self, node: &Callee)
fn visit_callee(&mut self, node: &Callee)
Visit a node of type
Callee
. Read more§fn visit_catch_clause(&mut self, node: &CatchClause)
fn visit_catch_clause(&mut self, node: &CatchClause)
Visit a node of type
CatchClause
. Read more§fn visit_class(&mut self, node: &Class)
fn visit_class(&mut self, node: &Class)
Visit a node of type
Class
. Read more§fn visit_class_decl(&mut self, node: &ClassDecl)
fn visit_class_decl(&mut self, node: &ClassDecl)
Visit a node of type
ClassDecl
. Read more§fn visit_class_expr(&mut self, node: &ClassExpr)
fn visit_class_expr(&mut self, node: &ClassExpr)
Visit a node of type
ClassExpr
. Read more§fn visit_class_member(&mut self, node: &ClassMember)
fn visit_class_member(&mut self, node: &ClassMember)
Visit a node of type
ClassMember
. Read more§fn visit_class_members(&mut self, node: &[ClassMember])
fn visit_class_members(&mut self, node: &[ClassMember])
Visit a node of type
Vec < ClassMember >
. Read more§fn visit_class_method(&mut self, node: &ClassMethod)
fn visit_class_method(&mut self, node: &ClassMethod)
Visit a node of type
ClassMethod
. Read more§fn visit_class_prop(&mut self, node: &ClassProp)
fn visit_class_prop(&mut self, node: &ClassProp)
Visit a node of type
ClassProp
. Read more§fn visit_computed_prop_name(&mut self, node: &ComputedPropName)
fn visit_computed_prop_name(&mut self, node: &ComputedPropName)
Visit a node of type
ComputedPropName
. Read more§fn visit_cond_expr(&mut self, node: &CondExpr)
fn visit_cond_expr(&mut self, node: &CondExpr)
Visit a node of type
CondExpr
. Read more§fn visit_constructor(&mut self, node: &Constructor)
fn visit_constructor(&mut self, node: &Constructor)
Visit a node of type
Constructor
. Read more§fn visit_continue_stmt(&mut self, node: &ContinueStmt)
fn visit_continue_stmt(&mut self, node: &ContinueStmt)
Visit a node of type
ContinueStmt
. Read more§fn visit_debugger_stmt(&mut self, node: &DebuggerStmt)
fn visit_debugger_stmt(&mut self, node: &DebuggerStmt)
Visit a node of type
DebuggerStmt
. Read more§fn visit_decl(&mut self, node: &Decl)
fn visit_decl(&mut self, node: &Decl)
Visit a node of type
Decl
. Read more§fn visit_decorator(&mut self, node: &Decorator)
fn visit_decorator(&mut self, node: &Decorator)
Visit a node of type
Decorator
. Read more§fn visit_decorators(&mut self, node: &[Decorator])
fn visit_decorators(&mut self, node: &[Decorator])
Visit a node of type
Vec < Decorator >
. Read more§fn visit_default_decl(&mut self, node: &DefaultDecl)
fn visit_default_decl(&mut self, node: &DefaultDecl)
Visit a node of type
DefaultDecl
. Read more§fn visit_do_while_stmt(&mut self, node: &DoWhileStmt)
fn visit_do_while_stmt(&mut self, node: &DoWhileStmt)
Visit a node of type
DoWhileStmt
. Read more§fn visit_empty_stmt(&mut self, node: &EmptyStmt)
fn visit_empty_stmt(&mut self, node: &EmptyStmt)
Visit a node of type
EmptyStmt
. Read more§fn visit_export_all(&mut self, node: &ExportAll)
fn visit_export_all(&mut self, node: &ExportAll)
Visit a node of type
ExportAll
. Read more§fn visit_export_decl(&mut self, node: &ExportDecl)
fn visit_export_decl(&mut self, node: &ExportDecl)
Visit a node of type
ExportDecl
. Read more§fn visit_export_default_decl(&mut self, node: &ExportDefaultDecl)
fn visit_export_default_decl(&mut self, node: &ExportDefaultDecl)
Visit a node of type
ExportDefaultDecl
. Read more§fn visit_export_default_expr(&mut self, node: &ExportDefaultExpr)
fn visit_export_default_expr(&mut self, node: &ExportDefaultExpr)
Visit a node of type
ExportDefaultExpr
. Read more§fn visit_export_default_specifier(&mut self, node: &ExportDefaultSpecifier)
fn visit_export_default_specifier(&mut self, node: &ExportDefaultSpecifier)
Visit a node of type
ExportDefaultSpecifier
. Read more§fn visit_export_named_specifier(&mut self, node: &ExportNamedSpecifier)
fn visit_export_named_specifier(&mut self, node: &ExportNamedSpecifier)
Visit a node of type
ExportNamedSpecifier
. Read more§fn visit_export_namespace_specifier(&mut self, node: &ExportNamespaceSpecifier)
fn visit_export_namespace_specifier(&mut self, node: &ExportNamespaceSpecifier)
Visit a node of type
ExportNamespaceSpecifier
. Read more§fn visit_export_specifier(&mut self, node: &ExportSpecifier)
fn visit_export_specifier(&mut self, node: &ExportSpecifier)
Visit a node of type
ExportSpecifier
. Read more§fn visit_export_specifiers(&mut self, node: &[ExportSpecifier])
fn visit_export_specifiers(&mut self, node: &[ExportSpecifier])
Visit a node of type
Vec < ExportSpecifier >
. Read more§fn visit_expr(&mut self, node: &Expr)
fn visit_expr(&mut self, node: &Expr)
Visit a node of type
Expr
. Read more§fn visit_expr_or_spread(&mut self, node: &ExprOrSpread)
fn visit_expr_or_spread(&mut self, node: &ExprOrSpread)
Visit a node of type
ExprOrSpread
. Read more§fn visit_expr_or_spreads(&mut self, node: &[ExprOrSpread])
fn visit_expr_or_spreads(&mut self, node: &[ExprOrSpread])
Visit a node of type
Vec < ExprOrSpread >
. Read more§fn visit_expr_stmt(&mut self, node: &ExprStmt)
fn visit_expr_stmt(&mut self, node: &ExprStmt)
Visit a node of type
ExprStmt
. Read more§fn visit_exprs(&mut self, node: &[Box<Expr>])
fn visit_exprs(&mut self, node: &[Box<Expr>])
Visit a node of type
Vec < Box < Expr > >
. Read more§fn visit_fn_decl(&mut self, node: &FnDecl)
fn visit_fn_decl(&mut self, node: &FnDecl)
Visit a node of type
FnDecl
. Read more§fn visit_fn_expr(&mut self, node: &FnExpr)
fn visit_fn_expr(&mut self, node: &FnExpr)
Visit a node of type
FnExpr
. Read more§fn visit_for_head(&mut self, node: &ForHead)
fn visit_for_head(&mut self, node: &ForHead)
Visit a node of type
ForHead
. Read more§fn visit_for_in_stmt(&mut self, node: &ForInStmt)
fn visit_for_in_stmt(&mut self, node: &ForInStmt)
Visit a node of type
ForInStmt
. Read more§fn visit_for_of_stmt(&mut self, node: &ForOfStmt)
fn visit_for_of_stmt(&mut self, node: &ForOfStmt)
Visit a node of type
ForOfStmt
. Read more§fn visit_for_stmt(&mut self, node: &ForStmt)
fn visit_for_stmt(&mut self, node: &ForStmt)
Visit a node of type
ForStmt
. Read more§fn visit_function(&mut self, node: &Function)
fn visit_function(&mut self, node: &Function)
Visit a node of type
Function
. Read more§fn visit_getter_prop(&mut self, node: &GetterProp)
fn visit_getter_prop(&mut self, node: &GetterProp)
Visit a node of type
GetterProp
. Read more§fn visit_ident(&mut self, node: &Ident)
fn visit_ident(&mut self, node: &Ident)
Visit a node of type
Ident
. Read more§fn visit_ident_name(&mut self, node: &IdentName)
fn visit_ident_name(&mut self, node: &IdentName)
Visit a node of type
IdentName
. Read more§fn visit_if_stmt(&mut self, node: &IfStmt)
fn visit_if_stmt(&mut self, node: &IfStmt)
Visit a node of type
IfStmt
. Read more§fn visit_import(&mut self, node: &Import)
fn visit_import(&mut self, node: &Import)
Visit a node of type
Import
. Read more§fn visit_import_decl(&mut self, node: &ImportDecl)
fn visit_import_decl(&mut self, node: &ImportDecl)
Visit a node of type
ImportDecl
. Read more§fn visit_import_default_specifier(&mut self, node: &ImportDefaultSpecifier)
fn visit_import_default_specifier(&mut self, node: &ImportDefaultSpecifier)
Visit a node of type
ImportDefaultSpecifier
. Read more§fn visit_import_named_specifier(&mut self, node: &ImportNamedSpecifier)
fn visit_import_named_specifier(&mut self, node: &ImportNamedSpecifier)
Visit a node of type
ImportNamedSpecifier
. Read more§fn visit_import_phase(&mut self, node: &ImportPhase)
fn visit_import_phase(&mut self, node: &ImportPhase)
Visit a node of type
ImportPhase
. Read more§fn visit_import_specifier(&mut self, node: &ImportSpecifier)
fn visit_import_specifier(&mut self, node: &ImportSpecifier)
Visit a node of type
ImportSpecifier
. Read more§fn visit_import_specifiers(&mut self, node: &[ImportSpecifier])
fn visit_import_specifiers(&mut self, node: &[ImportSpecifier])
Visit a node of type
Vec < ImportSpecifier >
. Read more§fn visit_import_star_as_specifier(&mut self, node: &ImportStarAsSpecifier)
fn visit_import_star_as_specifier(&mut self, node: &ImportStarAsSpecifier)
Visit a node of type
ImportStarAsSpecifier
. Read more§fn visit_import_with(&mut self, node: &ImportWith)
fn visit_import_with(&mut self, node: &ImportWith)
Visit a node of type
ImportWith
. Read more§fn visit_import_with_item(&mut self, node: &ImportWithItem)
fn visit_import_with_item(&mut self, node: &ImportWithItem)
Visit a node of type
ImportWithItem
. Read more§fn visit_import_with_items(&mut self, node: &[ImportWithItem])
fn visit_import_with_items(&mut self, node: &[ImportWithItem])
Visit a node of type
Vec < ImportWithItem >
. Read more§fn visit_invalid(&mut self, node: &Invalid)
fn visit_invalid(&mut self, node: &Invalid)
Visit a node of type
Invalid
. Read more§fn visit_jsx_attr(&mut self, node: &JSXAttr)
fn visit_jsx_attr(&mut self, node: &JSXAttr)
Visit a node of type
JSXAttr
. Read more§fn visit_jsx_attr_name(&mut self, node: &JSXAttrName)
fn visit_jsx_attr_name(&mut self, node: &JSXAttrName)
Visit a node of type
JSXAttrName
. Read more§fn visit_jsx_attr_or_spread(&mut self, node: &JSXAttrOrSpread)
fn visit_jsx_attr_or_spread(&mut self, node: &JSXAttrOrSpread)
Visit a node of type
JSXAttrOrSpread
. Read more§fn visit_jsx_attr_or_spreads(&mut self, node: &[JSXAttrOrSpread])
fn visit_jsx_attr_or_spreads(&mut self, node: &[JSXAttrOrSpread])
Visit a node of type
Vec < JSXAttrOrSpread >
. Read more§fn visit_jsx_attr_value(&mut self, node: &JSXAttrValue)
fn visit_jsx_attr_value(&mut self, node: &JSXAttrValue)
Visit a node of type
JSXAttrValue
. Read more§fn visit_jsx_closing_element(&mut self, node: &JSXClosingElement)
fn visit_jsx_closing_element(&mut self, node: &JSXClosingElement)
Visit a node of type
JSXClosingElement
. Read more§fn visit_jsx_closing_fragment(&mut self, node: &JSXClosingFragment)
fn visit_jsx_closing_fragment(&mut self, node: &JSXClosingFragment)
Visit a node of type
JSXClosingFragment
. Read more§fn visit_jsx_element(&mut self, node: &JSXElement)
fn visit_jsx_element(&mut self, node: &JSXElement)
Visit a node of type
JSXElement
. Read more§fn visit_jsx_element_child(&mut self, node: &JSXElementChild)
fn visit_jsx_element_child(&mut self, node: &JSXElementChild)
Visit a node of type
JSXElementChild
. Read more§fn visit_jsx_element_childs(&mut self, node: &[JSXElementChild])
fn visit_jsx_element_childs(&mut self, node: &[JSXElementChild])
Visit a node of type
Vec < JSXElementChild >
. Read more§fn visit_jsx_element_name(&mut self, node: &JSXElementName)
fn visit_jsx_element_name(&mut self, node: &JSXElementName)
Visit a node of type
JSXElementName
. Read more§fn visit_jsx_empty_expr(&mut self, node: &JSXEmptyExpr)
fn visit_jsx_empty_expr(&mut self, node: &JSXEmptyExpr)
Visit a node of type
JSXEmptyExpr
. Read more§fn visit_jsx_expr(&mut self, node: &JSXExpr)
fn visit_jsx_expr(&mut self, node: &JSXExpr)
Visit a node of type
JSXExpr
. Read more§fn visit_jsx_expr_container(&mut self, node: &JSXExprContainer)
fn visit_jsx_expr_container(&mut self, node: &JSXExprContainer)
Visit a node of type
JSXExprContainer
. Read more§fn visit_jsx_fragment(&mut self, node: &JSXFragment)
fn visit_jsx_fragment(&mut self, node: &JSXFragment)
Visit a node of type
JSXFragment
. Read more§fn visit_jsx_member_expr(&mut self, node: &JSXMemberExpr)
fn visit_jsx_member_expr(&mut self, node: &JSXMemberExpr)
Visit a node of type
JSXMemberExpr
. Read more§fn visit_jsx_namespaced_name(&mut self, node: &JSXNamespacedName)
fn visit_jsx_namespaced_name(&mut self, node: &JSXNamespacedName)
Visit a node of type
JSXNamespacedName
. Read more§fn visit_jsx_object(&mut self, node: &JSXObject)
fn visit_jsx_object(&mut self, node: &JSXObject)
Visit a node of type
JSXObject
. Read more§fn visit_jsx_opening_element(&mut self, node: &JSXOpeningElement)
fn visit_jsx_opening_element(&mut self, node: &JSXOpeningElement)
Visit a node of type
JSXOpeningElement
. Read more§fn visit_jsx_opening_fragment(&mut self, node: &JSXOpeningFragment)
fn visit_jsx_opening_fragment(&mut self, node: &JSXOpeningFragment)
Visit a node of type
JSXOpeningFragment
. Read more§fn visit_jsx_spread_child(&mut self, node: &JSXSpreadChild)
fn visit_jsx_spread_child(&mut self, node: &JSXSpreadChild)
Visit a node of type
JSXSpreadChild
. Read more§fn visit_jsx_text(&mut self, node: &JSXText)
fn visit_jsx_text(&mut self, node: &JSXText)
Visit a node of type
JSXText
. Read more§fn visit_key_value_pat_prop(&mut self, node: &KeyValuePatProp)
fn visit_key_value_pat_prop(&mut self, node: &KeyValuePatProp)
Visit a node of type
KeyValuePatProp
. Read more§fn visit_key_value_prop(&mut self, node: &KeyValueProp)
fn visit_key_value_prop(&mut self, node: &KeyValueProp)
Visit a node of type
KeyValueProp
. Read more§fn visit_labeled_stmt(&mut self, node: &LabeledStmt)
fn visit_labeled_stmt(&mut self, node: &LabeledStmt)
Visit a node of type
LabeledStmt
. Read more§fn visit_member_expr(&mut self, node: &MemberExpr)
fn visit_member_expr(&mut self, node: &MemberExpr)
Visit a node of type
MemberExpr
. Read more§fn visit_member_prop(&mut self, node: &MemberProp)
fn visit_member_prop(&mut self, node: &MemberProp)
Visit a node of type
MemberProp
. Read more§fn visit_meta_prop_expr(&mut self, node: &MetaPropExpr)
fn visit_meta_prop_expr(&mut self, node: &MetaPropExpr)
Visit a node of type
MetaPropExpr
. Read more§fn visit_meta_prop_kind(&mut self, node: &MetaPropKind)
fn visit_meta_prop_kind(&mut self, node: &MetaPropKind)
Visit a node of type
MetaPropKind
. Read more§fn visit_method_kind(&mut self, node: &MethodKind)
fn visit_method_kind(&mut self, node: &MethodKind)
Visit a node of type
MethodKind
. Read more§fn visit_method_prop(&mut self, node: &MethodProp)
fn visit_method_prop(&mut self, node: &MethodProp)
Visit a node of type
MethodProp
. Read more§fn visit_module(&mut self, node: &Module)
fn visit_module(&mut self, node: &Module)
Visit a node of type
Module
. Read more§fn visit_module_decl(&mut self, node: &ModuleDecl)
fn visit_module_decl(&mut self, node: &ModuleDecl)
Visit a node of type
ModuleDecl
. Read more§fn visit_module_export_name(&mut self, node: &ModuleExportName)
fn visit_module_export_name(&mut self, node: &ModuleExportName)
Visit a node of type
ModuleExportName
. Read more§fn visit_module_item(&mut self, node: &ModuleItem)
fn visit_module_item(&mut self, node: &ModuleItem)
Visit a node of type
ModuleItem
. Read more§fn visit_module_items(&mut self, node: &[ModuleItem])
fn visit_module_items(&mut self, node: &[ModuleItem])
Visit a node of type
Vec < ModuleItem >
. Read more§fn visit_named_export(&mut self, node: &NamedExport)
fn visit_named_export(&mut self, node: &NamedExport)
Visit a node of type
NamedExport
. Read more§fn visit_new_expr(&mut self, node: &NewExpr)
fn visit_new_expr(&mut self, node: &NewExpr)
Visit a node of type
NewExpr
. Read more§fn visit_null(&mut self, node: &Null)
fn visit_null(&mut self, node: &Null)
Visit a node of type
Null
. Read more§fn visit_number(&mut self, node: &Number)
fn visit_number(&mut self, node: &Number)
Visit a node of type
Number
. Read more§fn visit_object_lit(&mut self, node: &ObjectLit)
fn visit_object_lit(&mut self, node: &ObjectLit)
Visit a node of type
ObjectLit
. Read more§fn visit_object_pat(&mut self, node: &ObjectPat)
fn visit_object_pat(&mut self, node: &ObjectPat)
Visit a node of type
ObjectPat
. Read more§fn visit_object_pat_prop(&mut self, node: &ObjectPatProp)
fn visit_object_pat_prop(&mut self, node: &ObjectPatProp)
Visit a node of type
ObjectPatProp
. Read more§fn visit_object_pat_props(&mut self, node: &[ObjectPatProp])
fn visit_object_pat_props(&mut self, node: &[ObjectPatProp])
Visit a node of type
Vec < ObjectPatProp >
. Read more§fn visit_opt_accessibility(&mut self, node: &Option<Accessibility>)
fn visit_opt_accessibility(&mut self, node: &Option<Accessibility>)
Visit a node of type
Option < Accessibility >
. Read more§fn visit_opt_atom(&mut self, node: &Option<Atom>)
fn visit_opt_atom(&mut self, node: &Option<Atom>)
Visit a node of type
Option < swc_atoms :: Atom >
. Read more§fn visit_opt_block_stmt(&mut self, node: &Option<BlockStmt>)
fn visit_opt_block_stmt(&mut self, node: &Option<BlockStmt>)
Visit a node of type
Option < BlockStmt >
. Read more§fn visit_opt_call(&mut self, node: &OptCall)
fn visit_opt_call(&mut self, node: &OptCall)
Visit a node of type
OptCall
. Read more§fn visit_opt_catch_clause(&mut self, node: &Option<CatchClause>)
fn visit_opt_catch_clause(&mut self, node: &Option<CatchClause>)
Visit a node of type
Option < CatchClause >
. Read more§fn visit_opt_chain_base(&mut self, node: &OptChainBase)
fn visit_opt_chain_base(&mut self, node: &OptChainBase)
Visit a node of type
OptChainBase
. Read more§fn visit_opt_chain_expr(&mut self, node: &OptChainExpr)
fn visit_opt_chain_expr(&mut self, node: &OptChainExpr)
Visit a node of type
OptChainExpr
. Read more§fn visit_opt_expr(&mut self, node: &Option<Box<Expr>>)
fn visit_opt_expr(&mut self, node: &Option<Box<Expr>>)
Visit a node of type
Option < Box < Expr > >
. Read more§fn visit_opt_expr_or_spread(&mut self, node: &Option<ExprOrSpread>)
fn visit_opt_expr_or_spread(&mut self, node: &Option<ExprOrSpread>)
Visit a node of type
Option < ExprOrSpread >
. Read more§fn visit_opt_expr_or_spreads(&mut self, node: &Option<Vec<ExprOrSpread>>)
fn visit_opt_expr_or_spreads(&mut self, node: &Option<Vec<ExprOrSpread>>)
Visit a node of type
Option < Vec < ExprOrSpread > >
. Read more§fn visit_opt_ident(&mut self, node: &Option<Ident>)
fn visit_opt_ident(&mut self, node: &Option<Ident>)
Visit a node of type
Option < Ident >
. Read more§fn visit_opt_jsx_attr_value(&mut self, node: &Option<JSXAttrValue>)
fn visit_opt_jsx_attr_value(&mut self, node: &Option<JSXAttrValue>)
Visit a node of type
Option < JSXAttrValue >
. Read more§fn visit_opt_jsx_closing_element(&mut self, node: &Option<JSXClosingElement>)
fn visit_opt_jsx_closing_element(&mut self, node: &Option<JSXClosingElement>)
Visit a node of type
Option < JSXClosingElement >
. Read more§fn visit_opt_module_export_name(&mut self, node: &Option<ModuleExportName>)
fn visit_opt_module_export_name(&mut self, node: &Option<ModuleExportName>)
Visit a node of type
Option < ModuleExportName >
. Read more§fn visit_opt_object_lit(&mut self, node: &Option<Box<ObjectLit>>)
fn visit_opt_object_lit(&mut self, node: &Option<Box<ObjectLit>>)
Visit a node of type
Option < Box < ObjectLit > >
. Read more§fn visit_opt_pat(&mut self, node: &Option<Pat>)
fn visit_opt_pat(&mut self, node: &Option<Pat>)
Visit a node of type
Option < Pat >
. Read more§fn visit_opt_span(&mut self, node: &Option<Span>)
fn visit_opt_span(&mut self, node: &Option<Span>)
Visit a node of type
Option < swc_common :: Span >
. Read more§fn visit_opt_stmt(&mut self, node: &Option<Box<Stmt>>)
fn visit_opt_stmt(&mut self, node: &Option<Box<Stmt>>)
Visit a node of type
Option < Box < Stmt > >
. Read more§fn visit_opt_str(&mut self, node: &Option<Box<Str>>)
fn visit_opt_str(&mut self, node: &Option<Box<Str>>)
Visit a node of type
Option < Box < Str > >
. Read more§fn visit_opt_true_plus_minus(&mut self, node: &Option<TruePlusMinus>)
fn visit_opt_true_plus_minus(&mut self, node: &Option<TruePlusMinus>)
Visit a node of type
Option < TruePlusMinus >
. Read more§fn visit_opt_ts_entity_name(&mut self, node: &Option<TsEntityName>)
fn visit_opt_ts_entity_name(&mut self, node: &Option<TsEntityName>)
Visit a node of type
Option < TsEntityName >
. Read more§fn visit_opt_ts_namespace_body(&mut self, node: &Option<TsNamespaceBody>)
fn visit_opt_ts_namespace_body(&mut self, node: &Option<TsNamespaceBody>)
Visit a node of type
Option < TsNamespaceBody >
. Read more§fn visit_opt_ts_type(&mut self, node: &Option<Box<TsType>>)
fn visit_opt_ts_type(&mut self, node: &Option<Box<TsType>>)
Visit a node of type
Option < Box < TsType > >
. Read more§fn visit_opt_ts_type_ann(&mut self, node: &Option<Box<TsTypeAnn>>)
fn visit_opt_ts_type_ann(&mut self, node: &Option<Box<TsTypeAnn>>)
Visit a node of type
Option < Box < TsTypeAnn > >
. Read more§fn visit_opt_ts_type_param_decl(&mut self, node: &Option<Box<TsTypeParamDecl>>)
fn visit_opt_ts_type_param_decl(&mut self, node: &Option<Box<TsTypeParamDecl>>)
Visit a node of type
Option < Box < TsTypeParamDecl > >
. Read more§fn visit_opt_ts_type_param_instantiation(
&mut self,
node: &Option<Box<TsTypeParamInstantiation>>,
)
fn visit_opt_ts_type_param_instantiation( &mut self, node: &Option<Box<TsTypeParamInstantiation>>, )
Visit a node of type
Option < Box < TsTypeParamInstantiation > >
. Read more§fn visit_opt_var_decl_or_expr(&mut self, node: &Option<VarDeclOrExpr>)
fn visit_opt_var_decl_or_expr(&mut self, node: &Option<VarDeclOrExpr>)
Visit a node of type
Option < VarDeclOrExpr >
. Read more§fn visit_opt_vec_expr_or_spreads(&mut self, node: &[Option<ExprOrSpread>])
fn visit_opt_vec_expr_or_spreads(&mut self, node: &[Option<ExprOrSpread>])
Visit a node of type
Vec < Option < ExprOrSpread > >
. Read more§fn visit_opt_vec_pats(&mut self, node: &[Option<Pat>])
fn visit_opt_vec_pats(&mut self, node: &[Option<Pat>])
Visit a node of type
Vec < Option < Pat > >
. Read more§fn visit_param(&mut self, node: &Param)
fn visit_param(&mut self, node: &Param)
Visit a node of type
Param
. Read more§fn visit_param_or_ts_param_prop(&mut self, node: &ParamOrTsParamProp)
fn visit_param_or_ts_param_prop(&mut self, node: &ParamOrTsParamProp)
Visit a node of type
ParamOrTsParamProp
. Read more§fn visit_param_or_ts_param_props(&mut self, node: &[ParamOrTsParamProp])
fn visit_param_or_ts_param_props(&mut self, node: &[ParamOrTsParamProp])
Visit a node of type
Vec < ParamOrTsParamProp >
. Read more§fn visit_params(&mut self, node: &[Param])
fn visit_params(&mut self, node: &[Param])
Visit a node of type
Vec < Param >
. Read more§fn visit_paren_expr(&mut self, node: &ParenExpr)
fn visit_paren_expr(&mut self, node: &ParenExpr)
Visit a node of type
ParenExpr
. Read more§fn visit_pats(&mut self, node: &[Pat])
fn visit_pats(&mut self, node: &[Pat])
Visit a node of type
Vec < Pat >
. Read more§fn visit_private_method(&mut self, node: &PrivateMethod)
fn visit_private_method(&mut self, node: &PrivateMethod)
Visit a node of type
PrivateMethod
. Read more§fn visit_private_name(&mut self, node: &PrivateName)
fn visit_private_name(&mut self, node: &PrivateName)
Visit a node of type
PrivateName
. Read more§fn visit_private_prop(&mut self, node: &PrivateProp)
fn visit_private_prop(&mut self, node: &PrivateProp)
Visit a node of type
PrivateProp
. Read more§fn visit_program(&mut self, node: &Program)
fn visit_program(&mut self, node: &Program)
Visit a node of type
Program
. Read more§fn visit_prop(&mut self, node: &Prop)
fn visit_prop(&mut self, node: &Prop)
Visit a node of type
Prop
. Read more§fn visit_prop_name(&mut self, node: &PropName)
fn visit_prop_name(&mut self, node: &PropName)
Visit a node of type
PropName
. Read more§fn visit_prop_or_spread(&mut self, node: &PropOrSpread)
fn visit_prop_or_spread(&mut self, node: &PropOrSpread)
Visit a node of type
PropOrSpread
. Read more§fn visit_prop_or_spreads(&mut self, node: &[PropOrSpread])
fn visit_prop_or_spreads(&mut self, node: &[PropOrSpread])
Visit a node of type
Vec < PropOrSpread >
. Read more§fn visit_regex(&mut self, node: &Regex)
fn visit_regex(&mut self, node: &Regex)
Visit a node of type
Regex
. Read more§fn visit_rest_pat(&mut self, node: &RestPat)
fn visit_rest_pat(&mut self, node: &RestPat)
Visit a node of type
RestPat
. Read more§fn visit_return_stmt(&mut self, node: &ReturnStmt)
fn visit_return_stmt(&mut self, node: &ReturnStmt)
Visit a node of type
ReturnStmt
. Read more§fn visit_script(&mut self, node: &Script)
fn visit_script(&mut self, node: &Script)
Visit a node of type
Script
. Read more§fn visit_seq_expr(&mut self, node: &SeqExpr)
fn visit_seq_expr(&mut self, node: &SeqExpr)
Visit a node of type
SeqExpr
. Read more§fn visit_setter_prop(&mut self, node: &SetterProp)
fn visit_setter_prop(&mut self, node: &SetterProp)
Visit a node of type
SetterProp
. Read more§fn visit_simple_assign_target(&mut self, node: &SimpleAssignTarget)
fn visit_simple_assign_target(&mut self, node: &SimpleAssignTarget)
Visit a node of type
SimpleAssignTarget
. Read more§fn visit_span(&mut self, node: &Span)
fn visit_span(&mut self, node: &Span)
Visit a node of type
swc_common :: Span
. Read more§fn visit_spread_element(&mut self, node: &SpreadElement)
fn visit_spread_element(&mut self, node: &SpreadElement)
Visit a node of type
SpreadElement
. Read more§fn visit_static_block(&mut self, node: &StaticBlock)
fn visit_static_block(&mut self, node: &StaticBlock)
Visit a node of type
StaticBlock
. Read more§fn visit_stmt(&mut self, node: &Stmt)
fn visit_stmt(&mut self, node: &Stmt)
Visit a node of type
Stmt
. Read more§fn visit_stmts(&mut self, node: &[Stmt])
fn visit_stmts(&mut self, node: &[Stmt])
Visit a node of type
Vec < Stmt >
. Read more§fn visit_super(&mut self, node: &Super)
fn visit_super(&mut self, node: &Super)
Visit a node of type
Super
. Read more§fn visit_super_prop(&mut self, node: &SuperProp)
fn visit_super_prop(&mut self, node: &SuperProp)
Visit a node of type
SuperProp
. Read more§fn visit_super_prop_expr(&mut self, node: &SuperPropExpr)
fn visit_super_prop_expr(&mut self, node: &SuperPropExpr)
Visit a node of type
SuperPropExpr
. Read more§fn visit_switch_case(&mut self, node: &SwitchCase)
fn visit_switch_case(&mut self, node: &SwitchCase)
Visit a node of type
SwitchCase
. Read more§fn visit_switch_cases(&mut self, node: &[SwitchCase])
fn visit_switch_cases(&mut self, node: &[SwitchCase])
Visit a node of type
Vec < SwitchCase >
. Read more§fn visit_switch_stmt(&mut self, node: &SwitchStmt)
fn visit_switch_stmt(&mut self, node: &SwitchStmt)
Visit a node of type
SwitchStmt
. Read more§fn visit_syntax_context(&mut self, node: &SyntaxContext)
fn visit_syntax_context(&mut self, node: &SyntaxContext)
Visit a node of type
swc_common :: SyntaxContext
. Read more§fn visit_tagged_tpl(&mut self, node: &TaggedTpl)
fn visit_tagged_tpl(&mut self, node: &TaggedTpl)
Visit a node of type
TaggedTpl
. Read more§fn visit_this_expr(&mut self, node: &ThisExpr)
fn visit_this_expr(&mut self, node: &ThisExpr)
Visit a node of type
ThisExpr
. Read more§fn visit_throw_stmt(&mut self, node: &ThrowStmt)
fn visit_throw_stmt(&mut self, node: &ThrowStmt)
Visit a node of type
ThrowStmt
. Read more§fn visit_tpl_element(&mut self, node: &TplElement)
fn visit_tpl_element(&mut self, node: &TplElement)
Visit a node of type
TplElement
. Read more§fn visit_tpl_elements(&mut self, node: &[TplElement])
fn visit_tpl_elements(&mut self, node: &[TplElement])
Visit a node of type
Vec < TplElement >
. Read more§fn visit_true_plus_minus(&mut self, node: &TruePlusMinus)
fn visit_true_plus_minus(&mut self, node: &TruePlusMinus)
Visit a node of type
TruePlusMinus
. Read more§fn visit_try_stmt(&mut self, node: &TryStmt)
fn visit_try_stmt(&mut self, node: &TryStmt)
Visit a node of type
TryStmt
. Read more§fn visit_ts_array_type(&mut self, node: &TsArrayType)
fn visit_ts_array_type(&mut self, node: &TsArrayType)
Visit a node of type
TsArrayType
. Read more§fn visit_ts_as_expr(&mut self, node: &TsAsExpr)
fn visit_ts_as_expr(&mut self, node: &TsAsExpr)
Visit a node of type
TsAsExpr
. Read more§fn visit_ts_call_signature_decl(&mut self, node: &TsCallSignatureDecl)
fn visit_ts_call_signature_decl(&mut self, node: &TsCallSignatureDecl)
Visit a node of type
TsCallSignatureDecl
. Read more§fn visit_ts_conditional_type(&mut self, node: &TsConditionalType)
fn visit_ts_conditional_type(&mut self, node: &TsConditionalType)
Visit a node of type
TsConditionalType
. Read more§fn visit_ts_const_assertion(&mut self, node: &TsConstAssertion)
fn visit_ts_const_assertion(&mut self, node: &TsConstAssertion)
Visit a node of type
TsConstAssertion
. Read more§fn visit_ts_construct_signature_decl(&mut self, node: &TsConstructSignatureDecl)
fn visit_ts_construct_signature_decl(&mut self, node: &TsConstructSignatureDecl)
Visit a node of type
TsConstructSignatureDecl
. Read more§fn visit_ts_constructor_type(&mut self, node: &TsConstructorType)
fn visit_ts_constructor_type(&mut self, node: &TsConstructorType)
Visit a node of type
TsConstructorType
. Read more§fn visit_ts_entity_name(&mut self, node: &TsEntityName)
fn visit_ts_entity_name(&mut self, node: &TsEntityName)
Visit a node of type
TsEntityName
. Read more§fn visit_ts_enum_decl(&mut self, node: &TsEnumDecl)
fn visit_ts_enum_decl(&mut self, node: &TsEnumDecl)
Visit a node of type
TsEnumDecl
. Read more§fn visit_ts_enum_member(&mut self, node: &TsEnumMember)
fn visit_ts_enum_member(&mut self, node: &TsEnumMember)
Visit a node of type
TsEnumMember
. Read more§fn visit_ts_enum_member_id(&mut self, node: &TsEnumMemberId)
fn visit_ts_enum_member_id(&mut self, node: &TsEnumMemberId)
Visit a node of type
TsEnumMemberId
. Read more§fn visit_ts_enum_members(&mut self, node: &[TsEnumMember])
fn visit_ts_enum_members(&mut self, node: &[TsEnumMember])
Visit a node of type
Vec < TsEnumMember >
. Read more§fn visit_ts_export_assignment(&mut self, node: &TsExportAssignment)
fn visit_ts_export_assignment(&mut self, node: &TsExportAssignment)
Visit a node of type
TsExportAssignment
. Read more§fn visit_ts_expr_with_type_args(&mut self, node: &TsExprWithTypeArgs)
fn visit_ts_expr_with_type_args(&mut self, node: &TsExprWithTypeArgs)
Visit a node of type
TsExprWithTypeArgs
. Read more§fn visit_ts_expr_with_type_argss(&mut self, node: &[TsExprWithTypeArgs])
fn visit_ts_expr_with_type_argss(&mut self, node: &[TsExprWithTypeArgs])
Visit a node of type
Vec < TsExprWithTypeArgs >
. Read more§fn visit_ts_external_module_ref(&mut self, node: &TsExternalModuleRef)
fn visit_ts_external_module_ref(&mut self, node: &TsExternalModuleRef)
Visit a node of type
TsExternalModuleRef
. Read more§fn visit_ts_fn_or_constructor_type(&mut self, node: &TsFnOrConstructorType)
fn visit_ts_fn_or_constructor_type(&mut self, node: &TsFnOrConstructorType)
Visit a node of type
TsFnOrConstructorType
. Read more§fn visit_ts_fn_param(&mut self, node: &TsFnParam)
fn visit_ts_fn_param(&mut self, node: &TsFnParam)
Visit a node of type
TsFnParam
. Read more§fn visit_ts_fn_params(&mut self, node: &[TsFnParam])
fn visit_ts_fn_params(&mut self, node: &[TsFnParam])
Visit a node of type
Vec < TsFnParam >
. Read more§fn visit_ts_fn_type(&mut self, node: &TsFnType)
fn visit_ts_fn_type(&mut self, node: &TsFnType)
Visit a node of type
TsFnType
. Read more§fn visit_ts_getter_signature(&mut self, node: &TsGetterSignature)
fn visit_ts_getter_signature(&mut self, node: &TsGetterSignature)
Visit a node of type
TsGetterSignature
. Read more§fn visit_ts_import_equals_decl(&mut self, node: &TsImportEqualsDecl)
fn visit_ts_import_equals_decl(&mut self, node: &TsImportEqualsDecl)
Visit a node of type
TsImportEqualsDecl
. Read more§fn visit_ts_import_type(&mut self, node: &TsImportType)
fn visit_ts_import_type(&mut self, node: &TsImportType)
Visit a node of type
TsImportType
. Read more§fn visit_ts_index_signature(&mut self, node: &TsIndexSignature)
fn visit_ts_index_signature(&mut self, node: &TsIndexSignature)
Visit a node of type
TsIndexSignature
. Read more§fn visit_ts_indexed_access_type(&mut self, node: &TsIndexedAccessType)
fn visit_ts_indexed_access_type(&mut self, node: &TsIndexedAccessType)
Visit a node of type
TsIndexedAccessType
. Read more§fn visit_ts_infer_type(&mut self, node: &TsInferType)
fn visit_ts_infer_type(&mut self, node: &TsInferType)
Visit a node of type
TsInferType
. Read more§fn visit_ts_instantiation(&mut self, node: &TsInstantiation)
fn visit_ts_instantiation(&mut self, node: &TsInstantiation)
Visit a node of type
TsInstantiation
. Read more§fn visit_ts_interface_body(&mut self, node: &TsInterfaceBody)
fn visit_ts_interface_body(&mut self, node: &TsInterfaceBody)
Visit a node of type
TsInterfaceBody
. Read more§fn visit_ts_interface_decl(&mut self, node: &TsInterfaceDecl)
fn visit_ts_interface_decl(&mut self, node: &TsInterfaceDecl)
Visit a node of type
TsInterfaceDecl
. Read more§fn visit_ts_intersection_type(&mut self, node: &TsIntersectionType)
fn visit_ts_intersection_type(&mut self, node: &TsIntersectionType)
Visit a node of type
TsIntersectionType
. Read more§fn visit_ts_keyword_type(&mut self, node: &TsKeywordType)
fn visit_ts_keyword_type(&mut self, node: &TsKeywordType)
Visit a node of type
TsKeywordType
. Read more§fn visit_ts_keyword_type_kind(&mut self, node: &TsKeywordTypeKind)
fn visit_ts_keyword_type_kind(&mut self, node: &TsKeywordTypeKind)
Visit a node of type
TsKeywordTypeKind
. Read more§fn visit_ts_lit(&mut self, node: &TsLit)
fn visit_ts_lit(&mut self, node: &TsLit)
Visit a node of type
TsLit
. Read more§fn visit_ts_lit_type(&mut self, node: &TsLitType)
fn visit_ts_lit_type(&mut self, node: &TsLitType)
Visit a node of type
TsLitType
. Read more§fn visit_ts_mapped_type(&mut self, node: &TsMappedType)
fn visit_ts_mapped_type(&mut self, node: &TsMappedType)
Visit a node of type
TsMappedType
. Read more§fn visit_ts_method_signature(&mut self, node: &TsMethodSignature)
fn visit_ts_method_signature(&mut self, node: &TsMethodSignature)
Visit a node of type
TsMethodSignature
. Read more§fn visit_ts_module_block(&mut self, node: &TsModuleBlock)
fn visit_ts_module_block(&mut self, node: &TsModuleBlock)
Visit a node of type
TsModuleBlock
. Read more§fn visit_ts_module_decl(&mut self, node: &TsModuleDecl)
fn visit_ts_module_decl(&mut self, node: &TsModuleDecl)
Visit a node of type
TsModuleDecl
. Read more§fn visit_ts_module_name(&mut self, node: &TsModuleName)
fn visit_ts_module_name(&mut self, node: &TsModuleName)
Visit a node of type
TsModuleName
. Read more§fn visit_ts_module_ref(&mut self, node: &TsModuleRef)
fn visit_ts_module_ref(&mut self, node: &TsModuleRef)
Visit a node of type
TsModuleRef
. Read more§fn visit_ts_namespace_body(&mut self, node: &TsNamespaceBody)
fn visit_ts_namespace_body(&mut self, node: &TsNamespaceBody)
Visit a node of type
TsNamespaceBody
. Read more§fn visit_ts_namespace_decl(&mut self, node: &TsNamespaceDecl)
fn visit_ts_namespace_decl(&mut self, node: &TsNamespaceDecl)
Visit a node of type
TsNamespaceDecl
. Read more§fn visit_ts_namespace_export_decl(&mut self, node: &TsNamespaceExportDecl)
fn visit_ts_namespace_export_decl(&mut self, node: &TsNamespaceExportDecl)
Visit a node of type
TsNamespaceExportDecl
. Read more§fn visit_ts_non_null_expr(&mut self, node: &TsNonNullExpr)
fn visit_ts_non_null_expr(&mut self, node: &TsNonNullExpr)
Visit a node of type
TsNonNullExpr
. Read more§fn visit_ts_optional_type(&mut self, node: &TsOptionalType)
fn visit_ts_optional_type(&mut self, node: &TsOptionalType)
Visit a node of type
TsOptionalType
. Read more§fn visit_ts_param_prop(&mut self, node: &TsParamProp)
fn visit_ts_param_prop(&mut self, node: &TsParamProp)
Visit a node of type
TsParamProp
. Read more§fn visit_ts_param_prop_param(&mut self, node: &TsParamPropParam)
fn visit_ts_param_prop_param(&mut self, node: &TsParamPropParam)
Visit a node of type
TsParamPropParam
. Read more§fn visit_ts_parenthesized_type(&mut self, node: &TsParenthesizedType)
fn visit_ts_parenthesized_type(&mut self, node: &TsParenthesizedType)
Visit a node of type
TsParenthesizedType
. Read more§fn visit_ts_property_signature(&mut self, node: &TsPropertySignature)
fn visit_ts_property_signature(&mut self, node: &TsPropertySignature)
Visit a node of type
TsPropertySignature
. Read more§fn visit_ts_qualified_name(&mut self, node: &TsQualifiedName)
fn visit_ts_qualified_name(&mut self, node: &TsQualifiedName)
Visit a node of type
TsQualifiedName
. Read more§fn visit_ts_rest_type(&mut self, node: &TsRestType)
fn visit_ts_rest_type(&mut self, node: &TsRestType)
Visit a node of type
TsRestType
. Read more§fn visit_ts_satisfies_expr(&mut self, node: &TsSatisfiesExpr)
fn visit_ts_satisfies_expr(&mut self, node: &TsSatisfiesExpr)
Visit a node of type
TsSatisfiesExpr
. Read more§fn visit_ts_setter_signature(&mut self, node: &TsSetterSignature)
fn visit_ts_setter_signature(&mut self, node: &TsSetterSignature)
Visit a node of type
TsSetterSignature
. Read more§fn visit_ts_this_type(&mut self, node: &TsThisType)
fn visit_ts_this_type(&mut self, node: &TsThisType)
Visit a node of type
TsThisType
. Read more§fn visit_ts_this_type_or_ident(&mut self, node: &TsThisTypeOrIdent)
fn visit_ts_this_type_or_ident(&mut self, node: &TsThisTypeOrIdent)
Visit a node of type
TsThisTypeOrIdent
. Read more§fn visit_ts_tpl_lit_type(&mut self, node: &TsTplLitType)
fn visit_ts_tpl_lit_type(&mut self, node: &TsTplLitType)
Visit a node of type
TsTplLitType
. Read more§fn visit_ts_tuple_element(&mut self, node: &TsTupleElement)
fn visit_ts_tuple_element(&mut self, node: &TsTupleElement)
Visit a node of type
TsTupleElement
. Read more§fn visit_ts_tuple_elements(&mut self, node: &[TsTupleElement])
fn visit_ts_tuple_elements(&mut self, node: &[TsTupleElement])
Visit a node of type
Vec < TsTupleElement >
. Read more§fn visit_ts_tuple_type(&mut self, node: &TsTupleType)
fn visit_ts_tuple_type(&mut self, node: &TsTupleType)
Visit a node of type
TsTupleType
. Read more§fn visit_ts_type(&mut self, node: &TsType)
fn visit_ts_type(&mut self, node: &TsType)
Visit a node of type
TsType
. Read more§fn visit_ts_type_alias_decl(&mut self, node: &TsTypeAliasDecl)
fn visit_ts_type_alias_decl(&mut self, node: &TsTypeAliasDecl)
Visit a node of type
TsTypeAliasDecl
. Read more§fn visit_ts_type_ann(&mut self, node: &TsTypeAnn)
fn visit_ts_type_ann(&mut self, node: &TsTypeAnn)
Visit a node of type
TsTypeAnn
. Read more§fn visit_ts_type_assertion(&mut self, node: &TsTypeAssertion)
fn visit_ts_type_assertion(&mut self, node: &TsTypeAssertion)
Visit a node of type
TsTypeAssertion
. Read more§fn visit_ts_type_element(&mut self, node: &TsTypeElement)
fn visit_ts_type_element(&mut self, node: &TsTypeElement)
Visit a node of type
TsTypeElement
. Read more§fn visit_ts_type_elements(&mut self, node: &[TsTypeElement])
fn visit_ts_type_elements(&mut self, node: &[TsTypeElement])
Visit a node of type
Vec < TsTypeElement >
. Read more§fn visit_ts_type_lit(&mut self, node: &TsTypeLit)
fn visit_ts_type_lit(&mut self, node: &TsTypeLit)
Visit a node of type
TsTypeLit
. Read more§fn visit_ts_type_operator(&mut self, node: &TsTypeOperator)
fn visit_ts_type_operator(&mut self, node: &TsTypeOperator)
Visit a node of type
TsTypeOperator
. Read more§fn visit_ts_type_operator_op(&mut self, node: &TsTypeOperatorOp)
fn visit_ts_type_operator_op(&mut self, node: &TsTypeOperatorOp)
Visit a node of type
TsTypeOperatorOp
. Read more§fn visit_ts_type_param(&mut self, node: &TsTypeParam)
fn visit_ts_type_param(&mut self, node: &TsTypeParam)
Visit a node of type
TsTypeParam
. Read more§fn visit_ts_type_param_decl(&mut self, node: &TsTypeParamDecl)
fn visit_ts_type_param_decl(&mut self, node: &TsTypeParamDecl)
Visit a node of type
TsTypeParamDecl
. Read more§fn visit_ts_type_param_instantiation(&mut self, node: &TsTypeParamInstantiation)
fn visit_ts_type_param_instantiation(&mut self, node: &TsTypeParamInstantiation)
Visit a node of type
TsTypeParamInstantiation
. Read more§fn visit_ts_type_params(&mut self, node: &[TsTypeParam])
fn visit_ts_type_params(&mut self, node: &[TsTypeParam])
Visit a node of type
Vec < TsTypeParam >
. Read more§fn visit_ts_type_predicate(&mut self, node: &TsTypePredicate)
fn visit_ts_type_predicate(&mut self, node: &TsTypePredicate)
Visit a node of type
TsTypePredicate
. Read more§fn visit_ts_type_query(&mut self, node: &TsTypeQuery)
fn visit_ts_type_query(&mut self, node: &TsTypeQuery)
Visit a node of type
TsTypeQuery
. Read more§fn visit_ts_type_query_expr(&mut self, node: &TsTypeQueryExpr)
fn visit_ts_type_query_expr(&mut self, node: &TsTypeQueryExpr)
Visit a node of type
TsTypeQueryExpr
. Read more§fn visit_ts_type_ref(&mut self, node: &TsTypeRef)
fn visit_ts_type_ref(&mut self, node: &TsTypeRef)
Visit a node of type
TsTypeRef
. Read more§fn visit_ts_types(&mut self, node: &[Box<TsType>])
fn visit_ts_types(&mut self, node: &[Box<TsType>])
Visit a node of type
Vec < Box < TsType > >
. Read more§fn visit_ts_union_or_intersection_type(
&mut self,
node: &TsUnionOrIntersectionType,
)
fn visit_ts_union_or_intersection_type( &mut self, node: &TsUnionOrIntersectionType, )
Visit a node of type
TsUnionOrIntersectionType
. Read more§fn visit_ts_union_type(&mut self, node: &TsUnionType)
fn visit_ts_union_type(&mut self, node: &TsUnionType)
Visit a node of type
TsUnionType
. Read more§fn visit_unary_expr(&mut self, node: &UnaryExpr)
fn visit_unary_expr(&mut self, node: &UnaryExpr)
Visit a node of type
UnaryExpr
. Read more§fn visit_unary_op(&mut self, node: &UnaryOp)
fn visit_unary_op(&mut self, node: &UnaryOp)
Visit a node of type
UnaryOp
. Read more§fn visit_update_expr(&mut self, node: &UpdateExpr)
fn visit_update_expr(&mut self, node: &UpdateExpr)
Visit a node of type
UpdateExpr
. Read more§fn visit_update_op(&mut self, node: &UpdateOp)
fn visit_update_op(&mut self, node: &UpdateOp)
Visit a node of type
UpdateOp
. Read more§fn visit_using_decl(&mut self, node: &UsingDecl)
fn visit_using_decl(&mut self, node: &UsingDecl)
Visit a node of type
UsingDecl
. Read more§fn visit_var_decl(&mut self, node: &VarDecl)
fn visit_var_decl(&mut self, node: &VarDecl)
Visit a node of type
VarDecl
. Read more§fn visit_var_decl_kind(&mut self, node: &VarDeclKind)
fn visit_var_decl_kind(&mut self, node: &VarDeclKind)
Visit a node of type
VarDeclKind
. Read more§fn visit_var_decl_or_expr(&mut self, node: &VarDeclOrExpr)
fn visit_var_decl_or_expr(&mut self, node: &VarDeclOrExpr)
Visit a node of type
VarDeclOrExpr
. Read more§fn visit_var_declarator(&mut self, node: &VarDeclarator)
fn visit_var_declarator(&mut self, node: &VarDeclarator)
Visit a node of type
VarDeclarator
. Read more§fn visit_var_declarators(&mut self, node: &[VarDeclarator])
fn visit_var_declarators(&mut self, node: &[VarDeclarator])
Visit a node of type
Vec < VarDeclarator >
. Read more§fn visit_while_stmt(&mut self, node: &WhileStmt)
fn visit_while_stmt(&mut self, node: &WhileStmt)
Visit a node of type
WhileStmt
. Read more§fn visit_with_stmt(&mut self, node: &WithStmt)
fn visit_with_stmt(&mut self, node: &WithStmt)
Visit a node of type
WithStmt
. Read more§fn visit_yield_expr(&mut self, node: &YieldExpr)
fn visit_yield_expr(&mut self, node: &YieldExpr)
Visit a node of type
YieldExpr
. Read more§impl<V> Visit for Optional<V>where
V: Visit,
impl<V> Visit for Optional<V>where
V: Visit,
§fn visit_absolute_color_base(&mut self, node: &AbsoluteColorBase)
fn visit_absolute_color_base(&mut self, node: &AbsoluteColorBase)
Visit a node of type
AbsoluteColorBase
. Read more§fn visit_alpha_value(&mut self, node: &AlphaValue)
fn visit_alpha_value(&mut self, node: &AlphaValue)
Visit a node of type
AlphaValue
. Read more§fn visit_an_plus_b(&mut self, node: &AnPlusB)
fn visit_an_plus_b(&mut self, node: &AnPlusB)
Visit a node of type
AnPlusB
. Read more§fn visit_an_plus_b_notation(&mut self, node: &AnPlusBNotation)
fn visit_an_plus_b_notation(&mut self, node: &AnPlusBNotation)
Visit a node of type
AnPlusBNotation
. Read more§fn visit_angle(&mut self, node: &Angle)
fn visit_angle(&mut self, node: &Angle)
Visit a node of type
Angle
. Read more§fn visit_angle_percentage(&mut self, node: &AnglePercentage)
fn visit_angle_percentage(&mut self, node: &AnglePercentage)
Visit a node of type
AnglePercentage
. Read more§fn visit_any_namespace(&mut self, node: &AnyNamespace)
fn visit_any_namespace(&mut self, node: &AnyNamespace)
Visit a node of type
AnyNamespace
. Read more§fn visit_at_rule(&mut self, node: &AtRule)
fn visit_at_rule(&mut self, node: &AtRule)
Visit a node of type
AtRule
. Read more§fn visit_at_rule_name(&mut self, node: &AtRuleName)
fn visit_at_rule_name(&mut self, node: &AtRuleName)
Visit a node of type
AtRuleName
. Read more§fn visit_at_rule_prelude(&mut self, node: &AtRulePrelude)
fn visit_at_rule_prelude(&mut self, node: &AtRulePrelude)
Visit a node of type
AtRulePrelude
. Read more§fn visit_atom(&mut self, node: &Atom)
fn visit_atom(&mut self, node: &Atom)
Visit a node of type
swc_atoms :: Atom
. Read more§fn visit_attribute_selector(&mut self, node: &AttributeSelector)
fn visit_attribute_selector(&mut self, node: &AttributeSelector)
Visit a node of type
AttributeSelector
. Read more§fn visit_attribute_selector_matcher(&mut self, node: &AttributeSelectorMatcher)
fn visit_attribute_selector_matcher(&mut self, node: &AttributeSelectorMatcher)
Visit a node of type
AttributeSelectorMatcher
. Read more§fn visit_attribute_selector_matcher_value(
&mut self,
node: &AttributeSelectorMatcherValue,
)
fn visit_attribute_selector_matcher_value( &mut self, node: &AttributeSelectorMatcherValue, )
Visit a node of type
AttributeSelectorMatcherValue
. Read more§fn visit_attribute_selector_modifier(
&mut self,
node: &AttributeSelectorModifier,
)
fn visit_attribute_selector_modifier( &mut self, node: &AttributeSelectorModifier, )
Visit a node of type
AttributeSelectorModifier
. Read more§fn visit_attribute_selector_value(&mut self, node: &AttributeSelectorValue)
fn visit_attribute_selector_value(&mut self, node: &AttributeSelectorValue)
Visit a node of type
AttributeSelectorValue
. Read more§fn visit_bin_op(&mut self, node: &BinOp)
fn visit_bin_op(&mut self, node: &BinOp)
Visit a node of type
BinOp
. Read more§fn visit_calc_operator(&mut self, node: &CalcOperator)
fn visit_calc_operator(&mut self, node: &CalcOperator)
Visit a node of type
CalcOperator
. Read more§fn visit_calc_operator_type(&mut self, node: &CalcOperatorType)
fn visit_calc_operator_type(&mut self, node: &CalcOperatorType)
Visit a node of type
CalcOperatorType
. Read more§fn visit_calc_product(&mut self, node: &CalcProduct)
fn visit_calc_product(&mut self, node: &CalcProduct)
Visit a node of type
CalcProduct
. Read more§fn visit_calc_product_or_operator(&mut self, node: &CalcProductOrOperator)
fn visit_calc_product_or_operator(&mut self, node: &CalcProductOrOperator)
Visit a node of type
CalcProductOrOperator
. Read more§fn visit_calc_product_or_operators(&mut self, node: &[CalcProductOrOperator])
fn visit_calc_product_or_operators(&mut self, node: &[CalcProductOrOperator])
Visit a node of type
Vec < CalcProductOrOperator >
. Read more§fn visit_calc_sum(&mut self, node: &CalcSum)
fn visit_calc_sum(&mut self, node: &CalcSum)
Visit a node of type
CalcSum
. Read more§fn visit_calc_value(&mut self, node: &CalcValue)
fn visit_calc_value(&mut self, node: &CalcValue)
Visit a node of type
CalcValue
. Read more§fn visit_calc_value_or_operator(&mut self, node: &CalcValueOrOperator)
fn visit_calc_value_or_operator(&mut self, node: &CalcValueOrOperator)
Visit a node of type
CalcValueOrOperator
. Read more§fn visit_calc_value_or_operators(&mut self, node: &[CalcValueOrOperator])
fn visit_calc_value_or_operators(&mut self, node: &[CalcValueOrOperator])
Visit a node of type
Vec < CalcValueOrOperator >
. Read more§fn visit_class_selector(&mut self, node: &ClassSelector)
fn visit_class_selector(&mut self, node: &ClassSelector)
Visit a node of type
ClassSelector
. Read more§fn visit_cmyk_component(&mut self, node: &CmykComponent)
fn visit_cmyk_component(&mut self, node: &CmykComponent)
Visit a node of type
CmykComponent
. Read more§fn visit_color(&mut self, node: &Color)
fn visit_color(&mut self, node: &Color)
Visit a node of type
Color
. Read more§fn visit_color_profile_name(&mut self, node: &ColorProfileName)
fn visit_color_profile_name(&mut self, node: &ColorProfileName)
Visit a node of type
ColorProfileName
. Read more§fn visit_combinator(&mut self, node: &Combinator)
fn visit_combinator(&mut self, node: &Combinator)
Visit a node of type
Combinator
. Read more§fn visit_combinator_value(&mut self, node: &CombinatorValue)
fn visit_combinator_value(&mut self, node: &CombinatorValue)
Visit a node of type
CombinatorValue
. Read more§fn visit_complex_selector(&mut self, node: &ComplexSelector)
fn visit_complex_selector(&mut self, node: &ComplexSelector)
Visit a node of type
ComplexSelector
. Read more§fn visit_complex_selector_children(&mut self, node: &ComplexSelectorChildren)
fn visit_complex_selector_children(&mut self, node: &ComplexSelectorChildren)
Visit a node of type
ComplexSelectorChildren
. Read more§fn visit_complex_selector_childrens(&mut self, node: &[ComplexSelectorChildren])
fn visit_complex_selector_childrens(&mut self, node: &[ComplexSelectorChildren])
Visit a node of type
Vec < ComplexSelectorChildren >
. Read more§fn visit_complex_selectors(&mut self, node: &[ComplexSelector])
fn visit_complex_selectors(&mut self, node: &[ComplexSelector])
Visit a node of type
Vec < ComplexSelector >
. Read more§fn visit_component_value(&mut self, node: &ComponentValue)
fn visit_component_value(&mut self, node: &ComponentValue)
Visit a node of type
ComponentValue
. Read more§fn visit_component_values(&mut self, node: &[ComponentValue])
fn visit_component_values(&mut self, node: &[ComponentValue])
Visit a node of type
Vec < ComponentValue >
. Read more§fn visit_compound_selector(&mut self, node: &CompoundSelector)
fn visit_compound_selector(&mut self, node: &CompoundSelector)
Visit a node of type
CompoundSelector
. Read more§fn visit_compound_selector_list(&mut self, node: &CompoundSelectorList)
fn visit_compound_selector_list(&mut self, node: &CompoundSelectorList)
Visit a node of type
CompoundSelectorList
. Read more§fn visit_compound_selectors(&mut self, node: &[CompoundSelector])
fn visit_compound_selectors(&mut self, node: &[CompoundSelector])
Visit a node of type
Vec < CompoundSelector >
. Read more§fn visit_container_condition(&mut self, node: &ContainerCondition)
fn visit_container_condition(&mut self, node: &ContainerCondition)
Visit a node of type
ContainerCondition
. Read more§fn visit_container_name(&mut self, node: &ContainerName)
fn visit_container_name(&mut self, node: &ContainerName)
Visit a node of type
ContainerName
. Read more§fn visit_container_query(&mut self, node: &ContainerQuery)
fn visit_container_query(&mut self, node: &ContainerQuery)
Visit a node of type
ContainerQuery
. Read more§fn visit_container_query_and(&mut self, node: &ContainerQueryAnd)
fn visit_container_query_and(&mut self, node: &ContainerQueryAnd)
Visit a node of type
ContainerQueryAnd
. Read more§fn visit_container_query_not(&mut self, node: &ContainerQueryNot)
fn visit_container_query_not(&mut self, node: &ContainerQueryNot)
Visit a node of type
ContainerQueryNot
. Read more§fn visit_container_query_or(&mut self, node: &ContainerQueryOr)
fn visit_container_query_or(&mut self, node: &ContainerQueryOr)
Visit a node of type
ContainerQueryOr
. Read more§fn visit_container_query_type(&mut self, node: &ContainerQueryType)
fn visit_container_query_type(&mut self, node: &ContainerQueryType)
Visit a node of type
ContainerQueryType
. Read more§fn visit_container_query_types(&mut self, node: &[ContainerQueryType])
fn visit_container_query_types(&mut self, node: &[ContainerQueryType])
Visit a node of type
Vec < ContainerQueryType >
. Read more§fn visit_custom_highlight_name(&mut self, node: &CustomHighlightName)
fn visit_custom_highlight_name(&mut self, node: &CustomHighlightName)
Visit a node of type
CustomHighlightName
. Read more§fn visit_custom_ident(&mut self, node: &CustomIdent)
fn visit_custom_ident(&mut self, node: &CustomIdent)
Visit a node of type
CustomIdent
. Read more§fn visit_custom_idents(&mut self, node: &[CustomIdent])
fn visit_custom_idents(&mut self, node: &[CustomIdent])
Visit a node of type
Vec < CustomIdent >
. Read more§fn visit_custom_media_query(&mut self, node: &CustomMediaQuery)
fn visit_custom_media_query(&mut self, node: &CustomMediaQuery)
Visit a node of type
CustomMediaQuery
. Read more§fn visit_custom_media_query_media_type(
&mut self,
node: &CustomMediaQueryMediaType,
)
fn visit_custom_media_query_media_type( &mut self, node: &CustomMediaQueryMediaType, )
Visit a node of type
CustomMediaQueryMediaType
. Read more§fn visit_custom_property_name(&mut self, node: &CustomPropertyName)
fn visit_custom_property_name(&mut self, node: &CustomPropertyName)
Visit a node of type
CustomPropertyName
. Read more§fn visit_dashed_ident(&mut self, node: &DashedIdent)
fn visit_dashed_ident(&mut self, node: &DashedIdent)
Visit a node of type
DashedIdent
. Read more§fn visit_declaration(&mut self, node: &Declaration)
fn visit_declaration(&mut self, node: &Declaration)
Visit a node of type
Declaration
. Read more§fn visit_declaration_name(&mut self, node: &DeclarationName)
fn visit_declaration_name(&mut self, node: &DeclarationName)
Visit a node of type
DeclarationName
. Read more§fn visit_declaration_or_at_rule(&mut self, node: &DeclarationOrAtRule)
fn visit_declaration_or_at_rule(&mut self, node: &DeclarationOrAtRule)
Visit a node of type
DeclarationOrAtRule
. Read more§fn visit_delimiter(&mut self, node: &Delimiter)
fn visit_delimiter(&mut self, node: &Delimiter)
Visit a node of type
Delimiter
. Read more§fn visit_delimiter_value(&mut self, node: &DelimiterValue)
fn visit_delimiter_value(&mut self, node: &DelimiterValue)
Visit a node of type
DelimiterValue
. Read more§fn visit_dimension(&mut self, node: &Dimension)
fn visit_dimension(&mut self, node: &Dimension)
Visit a node of type
Dimension
. Read more§fn visit_dimension_token(&mut self, node: &DimensionToken)
fn visit_dimension_token(&mut self, node: &DimensionToken)
Visit a node of type
DimensionToken
. Read more§fn visit_document_prelude(&mut self, node: &DocumentPrelude)
fn visit_document_prelude(&mut self, node: &DocumentPrelude)
Visit a node of type
DocumentPrelude
. Read more§fn visit_document_prelude_matching_function(
&mut self,
node: &DocumentPreludeMatchingFunction,
)
fn visit_document_prelude_matching_function( &mut self, node: &DocumentPreludeMatchingFunction, )
Visit a node of type
DocumentPreludeMatchingFunction
. Read more§fn visit_document_prelude_matching_functions(
&mut self,
node: &[DocumentPreludeMatchingFunction],
)
fn visit_document_prelude_matching_functions( &mut self, node: &[DocumentPreludeMatchingFunction], )
Visit a node of type
Vec < DocumentPreludeMatchingFunction >
. Read more§fn visit_extension_name(&mut self, node: &ExtensionName)
fn visit_extension_name(&mut self, node: &ExtensionName)
Visit a node of type
ExtensionName
. Read more§fn visit_family_name(&mut self, node: &FamilyName)
fn visit_family_name(&mut self, node: &FamilyName)
Visit a node of type
FamilyName
. Read more§fn visit_family_names(&mut self, node: &[FamilyName])
fn visit_family_names(&mut self, node: &[FamilyName])
Visit a node of type
Vec < FamilyName >
. Read more§fn visit_flex(&mut self, node: &Flex)
fn visit_flex(&mut self, node: &Flex)
Visit a node of type
Flex
. Read more§fn visit_font_feature_values_prelude(&mut self, node: &FontFeatureValuesPrelude)
fn visit_font_feature_values_prelude(&mut self, node: &FontFeatureValuesPrelude)
Visit a node of type
FontFeatureValuesPrelude
. Read more§fn visit_forgiving_complex_selector(&mut self, node: &ForgivingComplexSelector)
fn visit_forgiving_complex_selector(&mut self, node: &ForgivingComplexSelector)
Visit a node of type
ForgivingComplexSelector
. Read more§fn visit_forgiving_complex_selectors(
&mut self,
node: &[ForgivingComplexSelector],
)
fn visit_forgiving_complex_selectors( &mut self, node: &[ForgivingComplexSelector], )
Visit a node of type
Vec < ForgivingComplexSelector >
. Read more§fn visit_forgiving_relative_selector(
&mut self,
node: &ForgivingRelativeSelector,
)
fn visit_forgiving_relative_selector( &mut self, node: &ForgivingRelativeSelector, )
Visit a node of type
ForgivingRelativeSelector
. Read more§fn visit_forgiving_relative_selector_list(
&mut self,
node: &ForgivingRelativeSelectorList,
)
fn visit_forgiving_relative_selector_list( &mut self, node: &ForgivingRelativeSelectorList, )
Visit a node of type
ForgivingRelativeSelectorList
. Read more§fn visit_forgiving_relative_selectors(
&mut self,
node: &[ForgivingRelativeSelector],
)
fn visit_forgiving_relative_selectors( &mut self, node: &[ForgivingRelativeSelector], )
Visit a node of type
Vec < ForgivingRelativeSelector >
. Read more§fn visit_forgiving_selector_list(&mut self, node: &ForgivingSelectorList)
fn visit_forgiving_selector_list(&mut self, node: &ForgivingSelectorList)
Visit a node of type
ForgivingSelectorList
. Read more§fn visit_frequency(&mut self, node: &Frequency)
fn visit_frequency(&mut self, node: &Frequency)
Visit a node of type
Frequency
. Read more§fn visit_frequency_percentage(&mut self, node: &FrequencyPercentage)
fn visit_frequency_percentage(&mut self, node: &FrequencyPercentage)
Visit a node of type
FrequencyPercentage
. Read more§fn visit_function(&mut self, node: &Function)
fn visit_function(&mut self, node: &Function)
Visit a node of type
Function
. Read more§fn visit_function_name(&mut self, node: &FunctionName)
fn visit_function_name(&mut self, node: &FunctionName)
Visit a node of type
FunctionName
. Read more§fn visit_general_enclosed(&mut self, node: &GeneralEnclosed)
fn visit_general_enclosed(&mut self, node: &GeneralEnclosed)
Visit a node of type
GeneralEnclosed
. Read more§fn visit_hex_color(&mut self, node: &HexColor)
fn visit_hex_color(&mut self, node: &HexColor)
Visit a node of type
HexColor
. Read more§fn visit_id_selector(&mut self, node: &IdSelector)
fn visit_id_selector(&mut self, node: &IdSelector)
Visit a node of type
IdSelector
. Read more§fn visit_ident(&mut self, node: &Ident)
fn visit_ident(&mut self, node: &Ident)
Visit a node of type
Ident
. Read more§fn visit_idents(&mut self, node: &[Ident])
fn visit_idents(&mut self, node: &[Ident])
Visit a node of type
Vec < Ident >
. Read more§fn visit_import_conditions(&mut self, node: &ImportConditions)
fn visit_import_conditions(&mut self, node: &ImportConditions)
Visit a node of type
ImportConditions
. Read more§fn visit_import_href(&mut self, node: &ImportHref)
fn visit_import_href(&mut self, node: &ImportHref)
Visit a node of type
ImportHref
. Read more§fn visit_import_layer_name(&mut self, node: &ImportLayerName)
fn visit_import_layer_name(&mut self, node: &ImportLayerName)
Visit a node of type
ImportLayerName
. Read more§fn visit_import_prelude(&mut self, node: &ImportPrelude)
fn visit_import_prelude(&mut self, node: &ImportPrelude)
Visit a node of type
ImportPrelude
. Read more§fn visit_important_flag(&mut self, node: &ImportantFlag)
fn visit_important_flag(&mut self, node: &ImportantFlag)
Visit a node of type
ImportantFlag
. Read more§fn visit_integer(&mut self, node: &Integer)
fn visit_integer(&mut self, node: &Integer)
Visit a node of type
Integer
. Read more§fn visit_keyframe_block(&mut self, node: &KeyframeBlock)
fn visit_keyframe_block(&mut self, node: &KeyframeBlock)
Visit a node of type
KeyframeBlock
. Read more§fn visit_keyframe_selector(&mut self, node: &KeyframeSelector)
fn visit_keyframe_selector(&mut self, node: &KeyframeSelector)
Visit a node of type
KeyframeSelector
. Read more§fn visit_keyframe_selectors(&mut self, node: &[KeyframeSelector])
fn visit_keyframe_selectors(&mut self, node: &[KeyframeSelector])
Visit a node of type
Vec < KeyframeSelector >
. Read more§fn visit_keyframes_name(&mut self, node: &KeyframesName)
fn visit_keyframes_name(&mut self, node: &KeyframesName)
Visit a node of type
KeyframesName
. Read more§fn visit_keyframes_pseudo_function(&mut self, node: &KeyframesPseudoFunction)
fn visit_keyframes_pseudo_function(&mut self, node: &KeyframesPseudoFunction)
Visit a node of type
KeyframesPseudoFunction
. Read more§fn visit_keyframes_pseudo_prefix(&mut self, node: &KeyframesPseudoPrefix)
fn visit_keyframes_pseudo_prefix(&mut self, node: &KeyframesPseudoPrefix)
Visit a node of type
KeyframesPseudoPrefix
. Read more§fn visit_layer_name(&mut self, node: &LayerName)
fn visit_layer_name(&mut self, node: &LayerName)
Visit a node of type
LayerName
. Read more§fn visit_layer_name_list(&mut self, node: &LayerNameList)
fn visit_layer_name_list(&mut self, node: &LayerNameList)
Visit a node of type
LayerNameList
. Read more§fn visit_layer_names(&mut self, node: &[LayerName])
fn visit_layer_names(&mut self, node: &[LayerName])
Visit a node of type
Vec < LayerName >
. Read more§fn visit_layer_prelude(&mut self, node: &LayerPrelude)
fn visit_layer_prelude(&mut self, node: &LayerPrelude)
Visit a node of type
LayerPrelude
. Read more§fn visit_length(&mut self, node: &Length)
fn visit_length(&mut self, node: &Length)
Visit a node of type
Length
. Read more§fn visit_length_percentage(&mut self, node: &LengthPercentage)
fn visit_length_percentage(&mut self, node: &LengthPercentage)
Visit a node of type
LengthPercentage
. Read more§fn visit_list_of_component_values(&mut self, node: &ListOfComponentValues)
fn visit_list_of_component_values(&mut self, node: &ListOfComponentValues)
Visit a node of type
ListOfComponentValues
. Read more§fn visit_media_and(&mut self, node: &MediaAnd)
fn visit_media_and(&mut self, node: &MediaAnd)
Visit a node of type
MediaAnd
. Read more§fn visit_media_condition(&mut self, node: &MediaCondition)
fn visit_media_condition(&mut self, node: &MediaCondition)
Visit a node of type
MediaCondition
. Read more§fn visit_media_condition_all_type(&mut self, node: &MediaConditionAllType)
fn visit_media_condition_all_type(&mut self, node: &MediaConditionAllType)
Visit a node of type
MediaConditionAllType
. Read more§fn visit_media_condition_all_types(&mut self, node: &[MediaConditionAllType])
fn visit_media_condition_all_types(&mut self, node: &[MediaConditionAllType])
Visit a node of type
Vec < MediaConditionAllType >
. Read more§fn visit_media_condition_type(&mut self, node: &MediaConditionType)
fn visit_media_condition_type(&mut self, node: &MediaConditionType)
Visit a node of type
MediaConditionType
. Read more§fn visit_media_condition_without_or(&mut self, node: &MediaConditionWithoutOr)
fn visit_media_condition_without_or(&mut self, node: &MediaConditionWithoutOr)
Visit a node of type
MediaConditionWithoutOr
. Read more§fn visit_media_condition_without_or_type(
&mut self,
node: &MediaConditionWithoutOrType,
)
fn visit_media_condition_without_or_type( &mut self, node: &MediaConditionWithoutOrType, )
Visit a node of type
MediaConditionWithoutOrType
. Read more§fn visit_media_condition_without_or_types(
&mut self,
node: &[MediaConditionWithoutOrType],
)
fn visit_media_condition_without_or_types( &mut self, node: &[MediaConditionWithoutOrType], )
Visit a node of type
Vec < MediaConditionWithoutOrType >
. Read more§fn visit_media_feature(&mut self, node: &MediaFeature)
fn visit_media_feature(&mut self, node: &MediaFeature)
Visit a node of type
MediaFeature
. Read more§fn visit_media_feature_boolean(&mut self, node: &MediaFeatureBoolean)
fn visit_media_feature_boolean(&mut self, node: &MediaFeatureBoolean)
Visit a node of type
MediaFeatureBoolean
. Read more§fn visit_media_feature_name(&mut self, node: &MediaFeatureName)
fn visit_media_feature_name(&mut self, node: &MediaFeatureName)
Visit a node of type
MediaFeatureName
. Read more§fn visit_media_feature_plain(&mut self, node: &MediaFeaturePlain)
fn visit_media_feature_plain(&mut self, node: &MediaFeaturePlain)
Visit a node of type
MediaFeaturePlain
. Read more§fn visit_media_feature_range(&mut self, node: &MediaFeatureRange)
fn visit_media_feature_range(&mut self, node: &MediaFeatureRange)
Visit a node of type
MediaFeatureRange
. Read more§fn visit_media_feature_range_comparison(
&mut self,
node: &MediaFeatureRangeComparison,
)
fn visit_media_feature_range_comparison( &mut self, node: &MediaFeatureRangeComparison, )
Visit a node of type
MediaFeatureRangeComparison
. Read more§fn visit_media_feature_range_interval(
&mut self,
node: &MediaFeatureRangeInterval,
)
fn visit_media_feature_range_interval( &mut self, node: &MediaFeatureRangeInterval, )
Visit a node of type
MediaFeatureRangeInterval
. Read more§fn visit_media_feature_value(&mut self, node: &MediaFeatureValue)
fn visit_media_feature_value(&mut self, node: &MediaFeatureValue)
Visit a node of type
MediaFeatureValue
. Read more§fn visit_media_in_parens(&mut self, node: &MediaInParens)
fn visit_media_in_parens(&mut self, node: &MediaInParens)
Visit a node of type
MediaInParens
. Read more§fn visit_media_not(&mut self, node: &MediaNot)
fn visit_media_not(&mut self, node: &MediaNot)
Visit a node of type
MediaNot
. Read more§fn visit_media_or(&mut self, node: &MediaOr)
fn visit_media_or(&mut self, node: &MediaOr)
Visit a node of type
MediaOr
. Read more§fn visit_media_query(&mut self, node: &MediaQuery)
fn visit_media_query(&mut self, node: &MediaQuery)
Visit a node of type
MediaQuery
. Read more§fn visit_media_query_list(&mut self, node: &MediaQueryList)
fn visit_media_query_list(&mut self, node: &MediaQueryList)
Visit a node of type
MediaQueryList
. Read more§fn visit_media_querys(&mut self, node: &[MediaQuery])
fn visit_media_querys(&mut self, node: &[MediaQuery])
Visit a node of type
Vec < MediaQuery >
. Read more§fn visit_media_type(&mut self, node: &MediaType)
fn visit_media_type(&mut self, node: &MediaType)
Visit a node of type
MediaType
. Read more§fn visit_named_namespace(&mut self, node: &NamedNamespace)
fn visit_named_namespace(&mut self, node: &NamedNamespace)
Visit a node of type
NamedNamespace
. Read more§fn visit_namespace(&mut self, node: &Namespace)
fn visit_namespace(&mut self, node: &Namespace)
Visit a node of type
Namespace
. Read more§fn visit_namespace_prefix(&mut self, node: &NamespacePrefix)
fn visit_namespace_prefix(&mut self, node: &NamespacePrefix)
Visit a node of type
NamespacePrefix
. Read more§fn visit_namespace_prelude(&mut self, node: &NamespacePrelude)
fn visit_namespace_prelude(&mut self, node: &NamespacePrelude)
Visit a node of type
NamespacePrelude
. Read more§fn visit_namespace_prelude_uri(&mut self, node: &NamespacePreludeUri)
fn visit_namespace_prelude_uri(&mut self, node: &NamespacePreludeUri)
Visit a node of type
NamespacePreludeUri
. Read more§fn visit_nesting_selector(&mut self, node: &NestingSelector)
fn visit_nesting_selector(&mut self, node: &NestingSelector)
Visit a node of type
NestingSelector
. Read more§fn visit_number(&mut self, node: &Number)
fn visit_number(&mut self, node: &Number)
Visit a node of type
Number
. Read more§fn visit_number_type(&mut self, node: &NumberType)
fn visit_number_type(&mut self, node: &NumberType)
Visit a node of type
NumberType
. Read more§fn visit_opt_at_rule_prelude(&mut self, node: &Option<Box<AtRulePrelude>>)
fn visit_opt_at_rule_prelude(&mut self, node: &Option<Box<AtRulePrelude>>)
Visit a node of type
Option < Box < AtRulePrelude > >
. Read more§fn visit_opt_atom(&mut self, node: &Option<Atom>)
fn visit_opt_atom(&mut self, node: &Option<Atom>)
Visit a node of type
Option < swc_atoms :: Atom >
. Read more§fn visit_opt_attribute_selector_matcher(
&mut self,
node: &Option<AttributeSelectorMatcher>,
)
fn visit_opt_attribute_selector_matcher( &mut self, node: &Option<AttributeSelectorMatcher>, )
Visit a node of type
Option < AttributeSelectorMatcher >
. Read more§fn visit_opt_attribute_selector_modifier(
&mut self,
node: &Option<AttributeSelectorModifier>,
)
fn visit_opt_attribute_selector_modifier( &mut self, node: &Option<AttributeSelectorModifier>, )
Visit a node of type
Option < AttributeSelectorModifier >
. Read more§fn visit_opt_attribute_selector_value(
&mut self,
node: &Option<AttributeSelectorValue>,
)
fn visit_opt_attribute_selector_value( &mut self, node: &Option<AttributeSelectorValue>, )
Visit a node of type
Option < AttributeSelectorValue >
. Read more§fn visit_opt_combinator(&mut self, node: &Option<Combinator>)
fn visit_opt_combinator(&mut self, node: &Option<Combinator>)
Visit a node of type
Option < Combinator >
. Read more§fn visit_opt_container_name(&mut self, node: &Option<ContainerName>)
fn visit_opt_container_name(&mut self, node: &Option<ContainerName>)
Visit a node of type
Option < ContainerName >
. Read more§fn visit_opt_forgiving_selector_list(
&mut self,
node: &Option<ForgivingSelectorList>,
)
fn visit_opt_forgiving_selector_list( &mut self, node: &Option<ForgivingSelectorList>, )
Visit a node of type
Option < ForgivingSelectorList >
. Read more§fn visit_opt_function(&mut self, node: &Option<Box<Function>>)
fn visit_opt_function(&mut self, node: &Option<Box<Function>>)
Visit a node of type
Option < Box < Function > >
. Read more§fn visit_opt_ident(&mut self, node: &Option<Ident>)
fn visit_opt_ident(&mut self, node: &Option<Ident>)
Visit a node of type
Option < Ident >
. Read more§fn visit_opt_import_conditions(&mut self, node: &Option<Box<ImportConditions>>)
fn visit_opt_import_conditions(&mut self, node: &Option<Box<ImportConditions>>)
Visit a node of type
Option < Box < ImportConditions > >
. Read more§fn visit_opt_import_layer_name(&mut self, node: &Option<Box<ImportLayerName>>)
fn visit_opt_import_layer_name(&mut self, node: &Option<Box<ImportLayerName>>)
Visit a node of type
Option < Box < ImportLayerName > >
. Read more§fn visit_opt_important_flag(&mut self, node: &Option<ImportantFlag>)
fn visit_opt_important_flag(&mut self, node: &Option<ImportantFlag>)
Visit a node of type
Option < ImportantFlag >
. Read more§fn visit_opt_media_condition_type(
&mut self,
node: &Option<Box<MediaConditionType>>,
)
fn visit_opt_media_condition_type( &mut self, node: &Option<Box<MediaConditionType>>, )
Visit a node of type
Option < Box < MediaConditionType > >
. Read more§fn visit_opt_media_query_list(&mut self, node: &Option<Box<MediaQueryList>>)
fn visit_opt_media_query_list(&mut self, node: &Option<Box<MediaQueryList>>)
Visit a node of type
Option < Box < MediaQueryList > >
. Read more§fn visit_opt_media_type(&mut self, node: &Option<MediaType>)
fn visit_opt_media_type(&mut self, node: &Option<MediaType>)
Visit a node of type
Option < MediaType >
. Read more§fn visit_opt_namespace(&mut self, node: &Option<Namespace>)
fn visit_opt_namespace(&mut self, node: &Option<Namespace>)
Visit a node of type
Option < Namespace >
. Read more§fn visit_opt_namespace_prefix(&mut self, node: &Option<NamespacePrefix>)
fn visit_opt_namespace_prefix(&mut self, node: &Option<NamespacePrefix>)
Visit a node of type
Option < NamespacePrefix >
. Read more§fn visit_opt_nesting_selector(&mut self, node: &Option<NestingSelector>)
fn visit_opt_nesting_selector(&mut self, node: &Option<NestingSelector>)
Visit a node of type
Option < NestingSelector >
. Read more§fn visit_opt_number(&mut self, node: &Option<Number>)
fn visit_opt_number(&mut self, node: &Option<Number>)
Visit a node of type
Option < Number >
. Read more§fn visit_opt_page_selector_pseudos(
&mut self,
node: &Option<Vec<PageSelectorPseudo>>,
)
fn visit_opt_page_selector_pseudos( &mut self, node: &Option<Vec<PageSelectorPseudo>>, )
Visit a node of type
Option < Vec < PageSelectorPseudo > >
. Read more§fn visit_opt_page_selector_type(&mut self, node: &Option<PageSelectorType>)
fn visit_opt_page_selector_type(&mut self, node: &Option<PageSelectorType>)
Visit a node of type
Option < PageSelectorType >
. Read more§fn visit_opt_pseudo_class_selector_childrens(
&mut self,
node: &Option<Vec<PseudoClassSelectorChildren>>,
)
fn visit_opt_pseudo_class_selector_childrens( &mut self, node: &Option<Vec<PseudoClassSelectorChildren>>, )
Visit a node of type
Option < Vec < PseudoClassSelectorChildren > >
. Read more§fn visit_opt_pseudo_element_selector_childrens(
&mut self,
node: &Option<Vec<PseudoElementSelectorChildren>>,
)
fn visit_opt_pseudo_element_selector_childrens( &mut self, node: &Option<Vec<PseudoElementSelectorChildren>>, )
Visit a node of type
Option < Vec < PseudoElementSelectorChildren > >
. Read more§fn visit_opt_simple_block(&mut self, node: &Option<SimpleBlock>)
fn visit_opt_simple_block(&mut self, node: &Option<SimpleBlock>)
Visit a node of type
Option < SimpleBlock >
. Read more§fn visit_opt_type_selector(&mut self, node: &Option<Box<TypeSelector>>)
fn visit_opt_type_selector(&mut self, node: &Option<Box<TypeSelector>>)
Visit a node of type
Option < Box < TypeSelector > >
. Read more§fn visit_opt_url_modifiers(&mut self, node: &Option<Vec<UrlModifier>>)
fn visit_opt_url_modifiers(&mut self, node: &Option<Vec<UrlModifier>>)
Visit a node of type
Option < Vec < UrlModifier > >
. Read more§fn visit_opt_url_value(&mut self, node: &Option<Box<UrlValue>>)
fn visit_opt_url_value(&mut self, node: &Option<Box<UrlValue>>)
Visit a node of type
Option < Box < UrlValue > >
. Read more§fn visit_page_selector(&mut self, node: &PageSelector)
fn visit_page_selector(&mut self, node: &PageSelector)
Visit a node of type
PageSelector
. Read more§fn visit_page_selector_list(&mut self, node: &PageSelectorList)
fn visit_page_selector_list(&mut self, node: &PageSelectorList)
Visit a node of type
PageSelectorList
. Read more§fn visit_page_selector_pseudo(&mut self, node: &PageSelectorPseudo)
fn visit_page_selector_pseudo(&mut self, node: &PageSelectorPseudo)
Visit a node of type
PageSelectorPseudo
. Read more§fn visit_page_selector_pseudos(&mut self, node: &[PageSelectorPseudo])
fn visit_page_selector_pseudos(&mut self, node: &[PageSelectorPseudo])
Visit a node of type
Vec < PageSelectorPseudo >
. Read more§fn visit_page_selector_type(&mut self, node: &PageSelectorType)
fn visit_page_selector_type(&mut self, node: &PageSelectorType)
Visit a node of type
PageSelectorType
. Read more§fn visit_page_selectors(&mut self, node: &[PageSelector])
fn visit_page_selectors(&mut self, node: &[PageSelector])
Visit a node of type
Vec < PageSelector >
. Read more§fn visit_percentage(&mut self, node: &Percentage)
fn visit_percentage(&mut self, node: &Percentage)
Visit a node of type
Percentage
. Read more§fn visit_pseudo_class_selector(&mut self, node: &PseudoClassSelector)
fn visit_pseudo_class_selector(&mut self, node: &PseudoClassSelector)
Visit a node of type
PseudoClassSelector
. Read more§fn visit_pseudo_class_selector_children(
&mut self,
node: &PseudoClassSelectorChildren,
)
fn visit_pseudo_class_selector_children( &mut self, node: &PseudoClassSelectorChildren, )
Visit a node of type
PseudoClassSelectorChildren
. Read more§fn visit_pseudo_class_selector_childrens(
&mut self,
node: &[PseudoClassSelectorChildren],
)
fn visit_pseudo_class_selector_childrens( &mut self, node: &[PseudoClassSelectorChildren], )
Visit a node of type
Vec < PseudoClassSelectorChildren >
. Read more§fn visit_pseudo_element_selector(&mut self, node: &PseudoElementSelector)
fn visit_pseudo_element_selector(&mut self, node: &PseudoElementSelector)
Visit a node of type
PseudoElementSelector
. Read more§fn visit_pseudo_element_selector_children(
&mut self,
node: &PseudoElementSelectorChildren,
)
fn visit_pseudo_element_selector_children( &mut self, node: &PseudoElementSelectorChildren, )
Visit a node of type
PseudoElementSelectorChildren
. Read more§fn visit_pseudo_element_selector_childrens(
&mut self,
node: &[PseudoElementSelectorChildren],
)
fn visit_pseudo_element_selector_childrens( &mut self, node: &[PseudoElementSelectorChildren], )
Visit a node of type
Vec < PseudoElementSelectorChildren >
. Read more§fn visit_qualified_rule(&mut self, node: &QualifiedRule)
fn visit_qualified_rule(&mut self, node: &QualifiedRule)
Visit a node of type
QualifiedRule
. Read more§fn visit_qualified_rule_prelude(&mut self, node: &QualifiedRulePrelude)
fn visit_qualified_rule_prelude(&mut self, node: &QualifiedRulePrelude)
Visit a node of type
QualifiedRulePrelude
. Read more§fn visit_query_in_parens(&mut self, node: &QueryInParens)
fn visit_query_in_parens(&mut self, node: &QueryInParens)
Visit a node of type
QueryInParens
. Read more§fn visit_ratio(&mut self, node: &Ratio)
fn visit_ratio(&mut self, node: &Ratio)
Visit a node of type
Ratio
. Read more§fn visit_relative_selector(&mut self, node: &RelativeSelector)
fn visit_relative_selector(&mut self, node: &RelativeSelector)
Visit a node of type
RelativeSelector
. Read more§fn visit_relative_selector_list(&mut self, node: &RelativeSelectorList)
fn visit_relative_selector_list(&mut self, node: &RelativeSelectorList)
Visit a node of type
RelativeSelectorList
. Read more§fn visit_relative_selectors(&mut self, node: &[RelativeSelector])
fn visit_relative_selectors(&mut self, node: &[RelativeSelector])
Visit a node of type
Vec < RelativeSelector >
. Read more§fn visit_resolution(&mut self, node: &Resolution)
fn visit_resolution(&mut self, node: &Resolution)
Visit a node of type
Resolution
. Read more§fn visit_rule(&mut self, node: &Rule)
fn visit_rule(&mut self, node: &Rule)
Visit a node of type
Rule
. Read more§fn visit_rules(&mut self, node: &[Rule])
fn visit_rules(&mut self, node: &[Rule])
Visit a node of type
Vec < Rule >
. Read more§fn visit_scope_range(&mut self, node: &ScopeRange)
fn visit_scope_range(&mut self, node: &ScopeRange)
Visit a node of type
ScopeRange
. Read more§fn visit_selector_list(&mut self, node: &SelectorList)
fn visit_selector_list(&mut self, node: &SelectorList)
Visit a node of type
SelectorList
. Read more§fn visit_sequence_of_custom_idents(&mut self, node: &SequenceOfCustomIdents)
fn visit_sequence_of_custom_idents(&mut self, node: &SequenceOfCustomIdents)
Visit a node of type
SequenceOfCustomIdents
. Read more§fn visit_simple_block(&mut self, node: &SimpleBlock)
fn visit_simple_block(&mut self, node: &SimpleBlock)
Visit a node of type
SimpleBlock
. Read more§fn visit_size_feature(&mut self, node: &SizeFeature)
fn visit_size_feature(&mut self, node: &SizeFeature)
Visit a node of type
SizeFeature
. Read more§fn visit_size_feature_boolean(&mut self, node: &SizeFeatureBoolean)
fn visit_size_feature_boolean(&mut self, node: &SizeFeatureBoolean)
Visit a node of type
SizeFeatureBoolean
. Read more§fn visit_size_feature_name(&mut self, node: &SizeFeatureName)
fn visit_size_feature_name(&mut self, node: &SizeFeatureName)
Visit a node of type
SizeFeatureName
. Read more§fn visit_size_feature_plain(&mut self, node: &SizeFeaturePlain)
fn visit_size_feature_plain(&mut self, node: &SizeFeaturePlain)
Visit a node of type
SizeFeaturePlain
. Read more§fn visit_size_feature_range(&mut self, node: &SizeFeatureRange)
fn visit_size_feature_range(&mut self, node: &SizeFeatureRange)
Visit a node of type
SizeFeatureRange
. Read more§fn visit_size_feature_range_comparison(
&mut self,
node: &SizeFeatureRangeComparison,
)
fn visit_size_feature_range_comparison( &mut self, node: &SizeFeatureRangeComparison, )
Visit a node of type
SizeFeatureRangeComparison
. Read more§fn visit_size_feature_range_interval(&mut self, node: &SizeFeatureRangeInterval)
fn visit_size_feature_range_interval(&mut self, node: &SizeFeatureRangeInterval)
Visit a node of type
SizeFeatureRangeInterval
. Read more§fn visit_size_feature_value(&mut self, node: &SizeFeatureValue)
fn visit_size_feature_value(&mut self, node: &SizeFeatureValue)
Visit a node of type
SizeFeatureValue
. Read more§fn visit_span(&mut self, node: &Span)
fn visit_span(&mut self, node: &Span)
Visit a node of type
swc_common :: Span
. Read more§fn visit_style_block(&mut self, node: &StyleBlock)
fn visit_style_block(&mut self, node: &StyleBlock)
Visit a node of type
StyleBlock
. Read more§fn visit_stylesheet(&mut self, node: &Stylesheet)
fn visit_stylesheet(&mut self, node: &Stylesheet)
Visit a node of type
Stylesheet
. Read more§fn visit_subclass_selector(&mut self, node: &SubclassSelector)
fn visit_subclass_selector(&mut self, node: &SubclassSelector)
Visit a node of type
SubclassSelector
. Read more§fn visit_subclass_selectors(&mut self, node: &[SubclassSelector])
fn visit_subclass_selectors(&mut self, node: &[SubclassSelector])
Visit a node of type
Vec < SubclassSelector >
. Read more§fn visit_supports_and(&mut self, node: &SupportsAnd)
fn visit_supports_and(&mut self, node: &SupportsAnd)
Visit a node of type
SupportsAnd
. Read more§fn visit_supports_condition(&mut self, node: &SupportsCondition)
fn visit_supports_condition(&mut self, node: &SupportsCondition)
Visit a node of type
SupportsCondition
. Read more§fn visit_supports_condition_type(&mut self, node: &SupportsConditionType)
fn visit_supports_condition_type(&mut self, node: &SupportsConditionType)
Visit a node of type
SupportsConditionType
. Read more§fn visit_supports_condition_types(&mut self, node: &[SupportsConditionType])
fn visit_supports_condition_types(&mut self, node: &[SupportsConditionType])
Visit a node of type
Vec < SupportsConditionType >
. Read more§fn visit_supports_feature(&mut self, node: &SupportsFeature)
fn visit_supports_feature(&mut self, node: &SupportsFeature)
Visit a node of type
SupportsFeature
. Read more§fn visit_supports_in_parens(&mut self, node: &SupportsInParens)
fn visit_supports_in_parens(&mut self, node: &SupportsInParens)
Visit a node of type
SupportsInParens
. Read more§fn visit_supports_not(&mut self, node: &SupportsNot)
fn visit_supports_not(&mut self, node: &SupportsNot)
Visit a node of type
SupportsNot
. Read more§fn visit_supports_or(&mut self, node: &SupportsOr)
fn visit_supports_or(&mut self, node: &SupportsOr)
Visit a node of type
SupportsOr
. Read more§fn visit_tag_name_selector(&mut self, node: &TagNameSelector)
fn visit_tag_name_selector(&mut self, node: &TagNameSelector)
Visit a node of type
TagNameSelector
. Read more§fn visit_time(&mut self, node: &Time)
fn visit_time(&mut self, node: &Time)
Visit a node of type
Time
. Read more§fn visit_time_percentage(&mut self, node: &TimePercentage)
fn visit_time_percentage(&mut self, node: &TimePercentage)
Visit a node of type
TimePercentage
. Read more§fn visit_token(&mut self, node: &Token)
fn visit_token(&mut self, node: &Token)
Visit a node of type
Token
. Read more§fn visit_token_and_span(&mut self, node: &TokenAndSpan)
fn visit_token_and_span(&mut self, node: &TokenAndSpan)
Visit a node of type
TokenAndSpan
. Read more§fn visit_type_selector(&mut self, node: &TypeSelector)
fn visit_type_selector(&mut self, node: &TypeSelector)
Visit a node of type
TypeSelector
. Read more§fn visit_unicode_range(&mut self, node: &UnicodeRange)
fn visit_unicode_range(&mut self, node: &UnicodeRange)
Visit a node of type
UnicodeRange
. Read more§fn visit_universal_selector(&mut self, node: &UniversalSelector)
fn visit_universal_selector(&mut self, node: &UniversalSelector)
Visit a node of type
UniversalSelector
. Read more§fn visit_unknown_dimension(&mut self, node: &UnknownDimension)
fn visit_unknown_dimension(&mut self, node: &UnknownDimension)
Visit a node of type
UnknownDimension
. Read more§fn visit_url_key_value(&mut self, node: &UrlKeyValue)
fn visit_url_key_value(&mut self, node: &UrlKeyValue)
Visit a node of type
UrlKeyValue
. Read more§fn visit_url_modifier(&mut self, node: &UrlModifier)
fn visit_url_modifier(&mut self, node: &UrlModifier)
Visit a node of type
UrlModifier
. Read more§fn visit_url_modifiers(&mut self, node: &[UrlModifier])
fn visit_url_modifiers(&mut self, node: &[UrlModifier])
Visit a node of type
Vec < UrlModifier >
. Read more§fn visit_url_value(&mut self, node: &UrlValue)
fn visit_url_value(&mut self, node: &UrlValue)
Visit a node of type
UrlValue
. Read more§fn visit_url_value_raw(&mut self, node: &UrlValueRaw)
fn visit_url_value_raw(&mut self, node: &UrlValueRaw)
Visit a node of type
UrlValueRaw
. Read more§fn visit_wq_name(&mut self, node: &WqName)
fn visit_wq_name(&mut self, node: &WqName)
Visit a node of type
WqName
. Read more§impl<V> VisitMut for Optional<V>where
V: VisitMut,
impl<V> VisitMut for Optional<V>where
V: VisitMut,
§fn visit_mut_accessibility(&mut self, node: &mut Accessibility)
fn visit_mut_accessibility(&mut self, node: &mut Accessibility)
Visit a node of type
Accessibility
. Read more§fn visit_mut_array_lit(&mut self, node: &mut ArrayLit)
fn visit_mut_array_lit(&mut self, node: &mut ArrayLit)
Visit a node of type
ArrayLit
. Read more§fn visit_mut_array_pat(&mut self, node: &mut ArrayPat)
fn visit_mut_array_pat(&mut self, node: &mut ArrayPat)
Visit a node of type
ArrayPat
. Read more§fn visit_mut_arrow_expr(&mut self, node: &mut ArrowExpr)
fn visit_mut_arrow_expr(&mut self, node: &mut ArrowExpr)
Visit a node of type
ArrowExpr
. Read more§fn visit_mut_assign_expr(&mut self, node: &mut AssignExpr)
fn visit_mut_assign_expr(&mut self, node: &mut AssignExpr)
Visit a node of type
AssignExpr
. Read more§fn visit_mut_assign_op(&mut self, node: &mut AssignOp)
fn visit_mut_assign_op(&mut self, node: &mut AssignOp)
Visit a node of type
AssignOp
. Read more§fn visit_mut_assign_pat(&mut self, node: &mut AssignPat)
fn visit_mut_assign_pat(&mut self, node: &mut AssignPat)
Visit a node of type
AssignPat
. Read more§fn visit_mut_assign_pat_prop(&mut self, node: &mut AssignPatProp)
fn visit_mut_assign_pat_prop(&mut self, node: &mut AssignPatProp)
Visit a node of type
AssignPatProp
. Read more§fn visit_mut_assign_prop(&mut self, node: &mut AssignProp)
fn visit_mut_assign_prop(&mut self, node: &mut AssignProp)
Visit a node of type
AssignProp
. Read more§fn visit_mut_assign_target(&mut self, node: &mut AssignTarget)
fn visit_mut_assign_target(&mut self, node: &mut AssignTarget)
Visit a node of type
AssignTarget
. Read more§fn visit_mut_assign_target_pat(&mut self, node: &mut AssignTargetPat)
fn visit_mut_assign_target_pat(&mut self, node: &mut AssignTargetPat)
Visit a node of type
AssignTargetPat
. Read more§fn visit_mut_atom(&mut self, node: &mut Atom)
fn visit_mut_atom(&mut self, node: &mut Atom)
Visit a node of type
swc_atoms :: Atom
. Read more§fn visit_mut_auto_accessor(&mut self, node: &mut AutoAccessor)
fn visit_mut_auto_accessor(&mut self, node: &mut AutoAccessor)
Visit a node of type
AutoAccessor
. Read more§fn visit_mut_await_expr(&mut self, node: &mut AwaitExpr)
fn visit_mut_await_expr(&mut self, node: &mut AwaitExpr)
Visit a node of type
AwaitExpr
. Read more§fn visit_mut_big_int(&mut self, node: &mut BigInt)
fn visit_mut_big_int(&mut self, node: &mut BigInt)
Visit a node of type
BigInt
. Read more§fn visit_mut_big_int_value(&mut self, node: &mut BigInt)
fn visit_mut_big_int_value(&mut self, node: &mut BigInt)
Visit a node of type
BigIntValue
. Read more§fn visit_mut_bin_expr(&mut self, node: &mut BinExpr)
fn visit_mut_bin_expr(&mut self, node: &mut BinExpr)
Visit a node of type
BinExpr
. Read more§fn visit_mut_binary_op(&mut self, node: &mut BinaryOp)
fn visit_mut_binary_op(&mut self, node: &mut BinaryOp)
Visit a node of type
BinaryOp
. Read more§fn visit_mut_binding_ident(&mut self, node: &mut BindingIdent)
fn visit_mut_binding_ident(&mut self, node: &mut BindingIdent)
Visit a node of type
BindingIdent
. Read more§fn visit_mut_block_stmt(&mut self, node: &mut BlockStmt)
fn visit_mut_block_stmt(&mut self, node: &mut BlockStmt)
Visit a node of type
BlockStmt
. Read more§fn visit_mut_block_stmt_or_expr(&mut self, node: &mut BlockStmtOrExpr)
fn visit_mut_block_stmt_or_expr(&mut self, node: &mut BlockStmtOrExpr)
Visit a node of type
BlockStmtOrExpr
. Read more§fn visit_mut_bool(&mut self, node: &mut Bool)
fn visit_mut_bool(&mut self, node: &mut Bool)
Visit a node of type
Bool
. Read more§fn visit_mut_break_stmt(&mut self, node: &mut BreakStmt)
fn visit_mut_break_stmt(&mut self, node: &mut BreakStmt)
Visit a node of type
BreakStmt
. Read more§fn visit_mut_call_expr(&mut self, node: &mut CallExpr)
fn visit_mut_call_expr(&mut self, node: &mut CallExpr)
Visit a node of type
CallExpr
. Read more§fn visit_mut_callee(&mut self, node: &mut Callee)
fn visit_mut_callee(&mut self, node: &mut Callee)
Visit a node of type
Callee
. Read more§fn visit_mut_catch_clause(&mut self, node: &mut CatchClause)
fn visit_mut_catch_clause(&mut self, node: &mut CatchClause)
Visit a node of type
CatchClause
. Read more§fn visit_mut_class(&mut self, node: &mut Class)
fn visit_mut_class(&mut self, node: &mut Class)
Visit a node of type
Class
. Read more§fn visit_mut_class_decl(&mut self, node: &mut ClassDecl)
fn visit_mut_class_decl(&mut self, node: &mut ClassDecl)
Visit a node of type
ClassDecl
. Read more§fn visit_mut_class_expr(&mut self, node: &mut ClassExpr)
fn visit_mut_class_expr(&mut self, node: &mut ClassExpr)
Visit a node of type
ClassExpr
. Read more§fn visit_mut_class_member(&mut self, node: &mut ClassMember)
fn visit_mut_class_member(&mut self, node: &mut ClassMember)
Visit a node of type
ClassMember
. Read more§fn visit_mut_class_members(&mut self, node: &mut Vec<ClassMember>)
fn visit_mut_class_members(&mut self, node: &mut Vec<ClassMember>)
Visit a node of type
Vec < ClassMember >
. Read more§fn visit_mut_class_method(&mut self, node: &mut ClassMethod)
fn visit_mut_class_method(&mut self, node: &mut ClassMethod)
Visit a node of type
ClassMethod
. Read more§fn visit_mut_class_prop(&mut self, node: &mut ClassProp)
fn visit_mut_class_prop(&mut self, node: &mut ClassProp)
Visit a node of type
ClassProp
. Read more§fn visit_mut_computed_prop_name(&mut self, node: &mut ComputedPropName)
fn visit_mut_computed_prop_name(&mut self, node: &mut ComputedPropName)
Visit a node of type
ComputedPropName
. Read more§fn visit_mut_cond_expr(&mut self, node: &mut CondExpr)
fn visit_mut_cond_expr(&mut self, node: &mut CondExpr)
Visit a node of type
CondExpr
. Read more§fn visit_mut_constructor(&mut self, node: &mut Constructor)
fn visit_mut_constructor(&mut self, node: &mut Constructor)
Visit a node of type
Constructor
. Read more§fn visit_mut_continue_stmt(&mut self, node: &mut ContinueStmt)
fn visit_mut_continue_stmt(&mut self, node: &mut ContinueStmt)
Visit a node of type
ContinueStmt
. Read more§fn visit_mut_debugger_stmt(&mut self, node: &mut DebuggerStmt)
fn visit_mut_debugger_stmt(&mut self, node: &mut DebuggerStmt)
Visit a node of type
DebuggerStmt
. Read more§fn visit_mut_decl(&mut self, node: &mut Decl)
fn visit_mut_decl(&mut self, node: &mut Decl)
Visit a node of type
Decl
. Read more§fn visit_mut_decorator(&mut self, node: &mut Decorator)
fn visit_mut_decorator(&mut self, node: &mut Decorator)
Visit a node of type
Decorator
. Read more§fn visit_mut_decorators(&mut self, node: &mut Vec<Decorator>)
fn visit_mut_decorators(&mut self, node: &mut Vec<Decorator>)
Visit a node of type
Vec < Decorator >
. Read more§fn visit_mut_default_decl(&mut self, node: &mut DefaultDecl)
fn visit_mut_default_decl(&mut self, node: &mut DefaultDecl)
Visit a node of type
DefaultDecl
. Read more§fn visit_mut_do_while_stmt(&mut self, node: &mut DoWhileStmt)
fn visit_mut_do_while_stmt(&mut self, node: &mut DoWhileStmt)
Visit a node of type
DoWhileStmt
. Read more§fn visit_mut_empty_stmt(&mut self, node: &mut EmptyStmt)
fn visit_mut_empty_stmt(&mut self, node: &mut EmptyStmt)
Visit a node of type
EmptyStmt
. Read more§fn visit_mut_export_all(&mut self, node: &mut ExportAll)
fn visit_mut_export_all(&mut self, node: &mut ExportAll)
Visit a node of type
ExportAll
. Read more§fn visit_mut_export_decl(&mut self, node: &mut ExportDecl)
fn visit_mut_export_decl(&mut self, node: &mut ExportDecl)
Visit a node of type
ExportDecl
. Read more§fn visit_mut_export_default_decl(&mut self, node: &mut ExportDefaultDecl)
fn visit_mut_export_default_decl(&mut self, node: &mut ExportDefaultDecl)
Visit a node of type
ExportDefaultDecl
. Read more§fn visit_mut_export_default_expr(&mut self, node: &mut ExportDefaultExpr)
fn visit_mut_export_default_expr(&mut self, node: &mut ExportDefaultExpr)
Visit a node of type
ExportDefaultExpr
. Read more§fn visit_mut_export_default_specifier(
&mut self,
node: &mut ExportDefaultSpecifier,
)
fn visit_mut_export_default_specifier( &mut self, node: &mut ExportDefaultSpecifier, )
Visit a node of type
ExportDefaultSpecifier
. Read more§fn visit_mut_export_named_specifier(&mut self, node: &mut ExportNamedSpecifier)
fn visit_mut_export_named_specifier(&mut self, node: &mut ExportNamedSpecifier)
Visit a node of type
ExportNamedSpecifier
. Read more§fn visit_mut_export_namespace_specifier(
&mut self,
node: &mut ExportNamespaceSpecifier,
)
fn visit_mut_export_namespace_specifier( &mut self, node: &mut ExportNamespaceSpecifier, )
Visit a node of type
ExportNamespaceSpecifier
. Read more§fn visit_mut_export_specifier(&mut self, node: &mut ExportSpecifier)
fn visit_mut_export_specifier(&mut self, node: &mut ExportSpecifier)
Visit a node of type
ExportSpecifier
. Read more§fn visit_mut_export_specifiers(&mut self, node: &mut Vec<ExportSpecifier>)
fn visit_mut_export_specifiers(&mut self, node: &mut Vec<ExportSpecifier>)
Visit a node of type
Vec < ExportSpecifier >
. Read more§fn visit_mut_expr(&mut self, node: &mut Expr)
fn visit_mut_expr(&mut self, node: &mut Expr)
Visit a node of type
Expr
. Read more§fn visit_mut_expr_or_spread(&mut self, node: &mut ExprOrSpread)
fn visit_mut_expr_or_spread(&mut self, node: &mut ExprOrSpread)
Visit a node of type
ExprOrSpread
. Read more§fn visit_mut_expr_or_spreads(&mut self, node: &mut Vec<ExprOrSpread>)
fn visit_mut_expr_or_spreads(&mut self, node: &mut Vec<ExprOrSpread>)
Visit a node of type
Vec < ExprOrSpread >
. Read more§fn visit_mut_expr_stmt(&mut self, node: &mut ExprStmt)
fn visit_mut_expr_stmt(&mut self, node: &mut ExprStmt)
Visit a node of type
ExprStmt
. Read more§fn visit_mut_exprs(&mut self, node: &mut Vec<Box<Expr>>)
fn visit_mut_exprs(&mut self, node: &mut Vec<Box<Expr>>)
Visit a node of type
Vec < Box < Expr > >
. Read more§fn visit_mut_fn_decl(&mut self, node: &mut FnDecl)
fn visit_mut_fn_decl(&mut self, node: &mut FnDecl)
Visit a node of type
FnDecl
. Read more§fn visit_mut_fn_expr(&mut self, node: &mut FnExpr)
fn visit_mut_fn_expr(&mut self, node: &mut FnExpr)
Visit a node of type
FnExpr
. Read more§fn visit_mut_for_head(&mut self, node: &mut ForHead)
fn visit_mut_for_head(&mut self, node: &mut ForHead)
Visit a node of type
ForHead
. Read more§fn visit_mut_for_in_stmt(&mut self, node: &mut ForInStmt)
fn visit_mut_for_in_stmt(&mut self, node: &mut ForInStmt)
Visit a node of type
ForInStmt
. Read more§fn visit_mut_for_of_stmt(&mut self, node: &mut ForOfStmt)
fn visit_mut_for_of_stmt(&mut self, node: &mut ForOfStmt)
Visit a node of type
ForOfStmt
. Read more§fn visit_mut_for_stmt(&mut self, node: &mut ForStmt)
fn visit_mut_for_stmt(&mut self, node: &mut ForStmt)
Visit a node of type
ForStmt
. Read more§fn visit_mut_function(&mut self, node: &mut Function)
fn visit_mut_function(&mut self, node: &mut Function)
Visit a node of type
Function
. Read more§fn visit_mut_getter_prop(&mut self, node: &mut GetterProp)
fn visit_mut_getter_prop(&mut self, node: &mut GetterProp)
Visit a node of type
GetterProp
. Read more§fn visit_mut_ident(&mut self, node: &mut Ident)
fn visit_mut_ident(&mut self, node: &mut Ident)
Visit a node of type
Ident
. Read more§fn visit_mut_ident_name(&mut self, node: &mut IdentName)
fn visit_mut_ident_name(&mut self, node: &mut IdentName)
Visit a node of type
IdentName
. Read more§fn visit_mut_if_stmt(&mut self, node: &mut IfStmt)
fn visit_mut_if_stmt(&mut self, node: &mut IfStmt)
Visit a node of type
IfStmt
. Read more§fn visit_mut_import(&mut self, node: &mut Import)
fn visit_mut_import(&mut self, node: &mut Import)
Visit a node of type
Import
. Read more§fn visit_mut_import_decl(&mut self, node: &mut ImportDecl)
fn visit_mut_import_decl(&mut self, node: &mut ImportDecl)
Visit a node of type
ImportDecl
. Read more§fn visit_mut_import_default_specifier(
&mut self,
node: &mut ImportDefaultSpecifier,
)
fn visit_mut_import_default_specifier( &mut self, node: &mut ImportDefaultSpecifier, )
Visit a node of type
ImportDefaultSpecifier
. Read more§fn visit_mut_import_named_specifier(&mut self, node: &mut ImportNamedSpecifier)
fn visit_mut_import_named_specifier(&mut self, node: &mut ImportNamedSpecifier)
Visit a node of type
ImportNamedSpecifier
. Read more§fn visit_mut_import_phase(&mut self, node: &mut ImportPhase)
fn visit_mut_import_phase(&mut self, node: &mut ImportPhase)
Visit a node of type
ImportPhase
. Read more§fn visit_mut_import_specifier(&mut self, node: &mut ImportSpecifier)
fn visit_mut_import_specifier(&mut self, node: &mut ImportSpecifier)
Visit a node of type
ImportSpecifier
. Read more§fn visit_mut_import_specifiers(&mut self, node: &mut Vec<ImportSpecifier>)
fn visit_mut_import_specifiers(&mut self, node: &mut Vec<ImportSpecifier>)
Visit a node of type
Vec < ImportSpecifier >
. Read more§fn visit_mut_import_star_as_specifier(
&mut self,
node: &mut ImportStarAsSpecifier,
)
fn visit_mut_import_star_as_specifier( &mut self, node: &mut ImportStarAsSpecifier, )
Visit a node of type
ImportStarAsSpecifier
. Read more§fn visit_mut_import_with(&mut self, node: &mut ImportWith)
fn visit_mut_import_with(&mut self, node: &mut ImportWith)
Visit a node of type
ImportWith
. Read more§fn visit_mut_import_with_item(&mut self, node: &mut ImportWithItem)
fn visit_mut_import_with_item(&mut self, node: &mut ImportWithItem)
Visit a node of type
ImportWithItem
. Read more§fn visit_mut_import_with_items(&mut self, node: &mut Vec<ImportWithItem>)
fn visit_mut_import_with_items(&mut self, node: &mut Vec<ImportWithItem>)
Visit a node of type
Vec < ImportWithItem >
. Read more§fn visit_mut_invalid(&mut self, node: &mut Invalid)
fn visit_mut_invalid(&mut self, node: &mut Invalid)
Visit a node of type
Invalid
. Read more§fn visit_mut_jsx_attr(&mut self, node: &mut JSXAttr)
fn visit_mut_jsx_attr(&mut self, node: &mut JSXAttr)
Visit a node of type
JSXAttr
. Read more§fn visit_mut_jsx_attr_name(&mut self, node: &mut JSXAttrName)
fn visit_mut_jsx_attr_name(&mut self, node: &mut JSXAttrName)
Visit a node of type
JSXAttrName
. Read more§fn visit_mut_jsx_attr_or_spread(&mut self, node: &mut JSXAttrOrSpread)
fn visit_mut_jsx_attr_or_spread(&mut self, node: &mut JSXAttrOrSpread)
Visit a node of type
JSXAttrOrSpread
. Read more§fn visit_mut_jsx_attr_or_spreads(&mut self, node: &mut Vec<JSXAttrOrSpread>)
fn visit_mut_jsx_attr_or_spreads(&mut self, node: &mut Vec<JSXAttrOrSpread>)
Visit a node of type
Vec < JSXAttrOrSpread >
. Read more§fn visit_mut_jsx_attr_value(&mut self, node: &mut JSXAttrValue)
fn visit_mut_jsx_attr_value(&mut self, node: &mut JSXAttrValue)
Visit a node of type
JSXAttrValue
. Read more§fn visit_mut_jsx_closing_element(&mut self, node: &mut JSXClosingElement)
fn visit_mut_jsx_closing_element(&mut self, node: &mut JSXClosingElement)
Visit a node of type
JSXClosingElement
. Read more§fn visit_mut_jsx_closing_fragment(&mut self, node: &mut JSXClosingFragment)
fn visit_mut_jsx_closing_fragment(&mut self, node: &mut JSXClosingFragment)
Visit a node of type
JSXClosingFragment
. Read more§fn visit_mut_jsx_element(&mut self, node: &mut JSXElement)
fn visit_mut_jsx_element(&mut self, node: &mut JSXElement)
Visit a node of type
JSXElement
. Read more§fn visit_mut_jsx_element_child(&mut self, node: &mut JSXElementChild)
fn visit_mut_jsx_element_child(&mut self, node: &mut JSXElementChild)
Visit a node of type
JSXElementChild
. Read more§fn visit_mut_jsx_element_childs(&mut self, node: &mut Vec<JSXElementChild>)
fn visit_mut_jsx_element_childs(&mut self, node: &mut Vec<JSXElementChild>)
Visit a node of type
Vec < JSXElementChild >
. Read more§fn visit_mut_jsx_element_name(&mut self, node: &mut JSXElementName)
fn visit_mut_jsx_element_name(&mut self, node: &mut JSXElementName)
Visit a node of type
JSXElementName
. Read more§fn visit_mut_jsx_empty_expr(&mut self, node: &mut JSXEmptyExpr)
fn visit_mut_jsx_empty_expr(&mut self, node: &mut JSXEmptyExpr)
Visit a node of type
JSXEmptyExpr
. Read more§fn visit_mut_jsx_expr(&mut self, node: &mut JSXExpr)
fn visit_mut_jsx_expr(&mut self, node: &mut JSXExpr)
Visit a node of type
JSXExpr
. Read more§fn visit_mut_jsx_expr_container(&mut self, node: &mut JSXExprContainer)
fn visit_mut_jsx_expr_container(&mut self, node: &mut JSXExprContainer)
Visit a node of type
JSXExprContainer
. Read more§fn visit_mut_jsx_fragment(&mut self, node: &mut JSXFragment)
fn visit_mut_jsx_fragment(&mut self, node: &mut JSXFragment)
Visit a node of type
JSXFragment
. Read more§fn visit_mut_jsx_member_expr(&mut self, node: &mut JSXMemberExpr)
fn visit_mut_jsx_member_expr(&mut self, node: &mut JSXMemberExpr)
Visit a node of type
JSXMemberExpr
. Read more§fn visit_mut_jsx_namespaced_name(&mut self, node: &mut JSXNamespacedName)
fn visit_mut_jsx_namespaced_name(&mut self, node: &mut JSXNamespacedName)
Visit a node of type
JSXNamespacedName
. Read more§fn visit_mut_jsx_object(&mut self, node: &mut JSXObject)
fn visit_mut_jsx_object(&mut self, node: &mut JSXObject)
Visit a node of type
JSXObject
. Read more§fn visit_mut_jsx_opening_element(&mut self, node: &mut JSXOpeningElement)
fn visit_mut_jsx_opening_element(&mut self, node: &mut JSXOpeningElement)
Visit a node of type
JSXOpeningElement
. Read more§fn visit_mut_jsx_opening_fragment(&mut self, node: &mut JSXOpeningFragment)
fn visit_mut_jsx_opening_fragment(&mut self, node: &mut JSXOpeningFragment)
Visit a node of type
JSXOpeningFragment
. Read more§fn visit_mut_jsx_spread_child(&mut self, node: &mut JSXSpreadChild)
fn visit_mut_jsx_spread_child(&mut self, node: &mut JSXSpreadChild)
Visit a node of type
JSXSpreadChild
. Read more§fn visit_mut_jsx_text(&mut self, node: &mut JSXText)
fn visit_mut_jsx_text(&mut self, node: &mut JSXText)
Visit a node of type
JSXText
. Read more§fn visit_mut_key(&mut self, node: &mut Key)
fn visit_mut_key(&mut self, node: &mut Key)
Visit a node of type
Key
. Read more§fn visit_mut_key_value_pat_prop(&mut self, node: &mut KeyValuePatProp)
fn visit_mut_key_value_pat_prop(&mut self, node: &mut KeyValuePatProp)
Visit a node of type
KeyValuePatProp
. Read more§fn visit_mut_key_value_prop(&mut self, node: &mut KeyValueProp)
fn visit_mut_key_value_prop(&mut self, node: &mut KeyValueProp)
Visit a node of type
KeyValueProp
. Read more§fn visit_mut_labeled_stmt(&mut self, node: &mut LabeledStmt)
fn visit_mut_labeled_stmt(&mut self, node: &mut LabeledStmt)
Visit a node of type
LabeledStmt
. Read more§fn visit_mut_lit(&mut self, node: &mut Lit)
fn visit_mut_lit(&mut self, node: &mut Lit)
Visit a node of type
Lit
. Read more§fn visit_mut_member_expr(&mut self, node: &mut MemberExpr)
fn visit_mut_member_expr(&mut self, node: &mut MemberExpr)
Visit a node of type
MemberExpr
. Read more§fn visit_mut_member_prop(&mut self, node: &mut MemberProp)
fn visit_mut_member_prop(&mut self, node: &mut MemberProp)
Visit a node of type
MemberProp
. Read more§fn visit_mut_meta_prop_expr(&mut self, node: &mut MetaPropExpr)
fn visit_mut_meta_prop_expr(&mut self, node: &mut MetaPropExpr)
Visit a node of type
MetaPropExpr
. Read more§fn visit_mut_meta_prop_kind(&mut self, node: &mut MetaPropKind)
fn visit_mut_meta_prop_kind(&mut self, node: &mut MetaPropKind)
Visit a node of type
MetaPropKind
. Read more§fn visit_mut_method_kind(&mut self, node: &mut MethodKind)
fn visit_mut_method_kind(&mut self, node: &mut MethodKind)
Visit a node of type
MethodKind
. Read more§fn visit_mut_method_prop(&mut self, node: &mut MethodProp)
fn visit_mut_method_prop(&mut self, node: &mut MethodProp)
Visit a node of type
MethodProp
. Read more§fn visit_mut_module(&mut self, node: &mut Module)
fn visit_mut_module(&mut self, node: &mut Module)
Visit a node of type
Module
. Read more§fn visit_mut_module_decl(&mut self, node: &mut ModuleDecl)
fn visit_mut_module_decl(&mut self, node: &mut ModuleDecl)
Visit a node of type
ModuleDecl
. Read more§fn visit_mut_module_export_name(&mut self, node: &mut ModuleExportName)
fn visit_mut_module_export_name(&mut self, node: &mut ModuleExportName)
Visit a node of type
ModuleExportName
. Read more§fn visit_mut_module_item(&mut self, node: &mut ModuleItem)
fn visit_mut_module_item(&mut self, node: &mut ModuleItem)
Visit a node of type
ModuleItem
. Read more§fn visit_mut_module_items(&mut self, node: &mut Vec<ModuleItem>)
fn visit_mut_module_items(&mut self, node: &mut Vec<ModuleItem>)
Visit a node of type
Vec < ModuleItem >
. Read more§fn visit_mut_named_export(&mut self, node: &mut NamedExport)
fn visit_mut_named_export(&mut self, node: &mut NamedExport)
Visit a node of type
NamedExport
. Read more§fn visit_mut_new_expr(&mut self, node: &mut NewExpr)
fn visit_mut_new_expr(&mut self, node: &mut NewExpr)
Visit a node of type
NewExpr
. Read more§fn visit_mut_null(&mut self, node: &mut Null)
fn visit_mut_null(&mut self, node: &mut Null)
Visit a node of type
Null
. Read more§fn visit_mut_number(&mut self, node: &mut Number)
fn visit_mut_number(&mut self, node: &mut Number)
Visit a node of type
Number
. Read more§fn visit_mut_object_lit(&mut self, node: &mut ObjectLit)
fn visit_mut_object_lit(&mut self, node: &mut ObjectLit)
Visit a node of type
ObjectLit
. Read more§fn visit_mut_object_pat(&mut self, node: &mut ObjectPat)
fn visit_mut_object_pat(&mut self, node: &mut ObjectPat)
Visit a node of type
ObjectPat
. Read more§fn visit_mut_object_pat_prop(&mut self, node: &mut ObjectPatProp)
fn visit_mut_object_pat_prop(&mut self, node: &mut ObjectPatProp)
Visit a node of type
ObjectPatProp
. Read more§fn visit_mut_object_pat_props(&mut self, node: &mut Vec<ObjectPatProp>)
fn visit_mut_object_pat_props(&mut self, node: &mut Vec<ObjectPatProp>)
Visit a node of type
Vec < ObjectPatProp >
. Read more§fn visit_mut_opt_accessibility(&mut self, node: &mut Option<Accessibility>)
fn visit_mut_opt_accessibility(&mut self, node: &mut Option<Accessibility>)
Visit a node of type
Option < Accessibility >
. Read more§fn visit_mut_opt_atom(&mut self, node: &mut Option<Atom>)
fn visit_mut_opt_atom(&mut self, node: &mut Option<Atom>)
Visit a node of type
Option < swc_atoms :: Atom >
. Read more§fn visit_mut_opt_block_stmt(&mut self, node: &mut Option<BlockStmt>)
fn visit_mut_opt_block_stmt(&mut self, node: &mut Option<BlockStmt>)
Visit a node of type
Option < BlockStmt >
. Read more§fn visit_mut_opt_call(&mut self, node: &mut OptCall)
fn visit_mut_opt_call(&mut self, node: &mut OptCall)
Visit a node of type
OptCall
. Read more§fn visit_mut_opt_catch_clause(&mut self, node: &mut Option<CatchClause>)
fn visit_mut_opt_catch_clause(&mut self, node: &mut Option<CatchClause>)
Visit a node of type
Option < CatchClause >
. Read more§fn visit_mut_opt_chain_base(&mut self, node: &mut OptChainBase)
fn visit_mut_opt_chain_base(&mut self, node: &mut OptChainBase)
Visit a node of type
OptChainBase
. Read more§fn visit_mut_opt_chain_expr(&mut self, node: &mut OptChainExpr)
fn visit_mut_opt_chain_expr(&mut self, node: &mut OptChainExpr)
Visit a node of type
OptChainExpr
. Read more§fn visit_mut_opt_expr(&mut self, node: &mut Option<Box<Expr>>)
fn visit_mut_opt_expr(&mut self, node: &mut Option<Box<Expr>>)
Visit a node of type
Option < Box < Expr > >
. Read more§fn visit_mut_opt_expr_or_spread(&mut self, node: &mut Option<ExprOrSpread>)
fn visit_mut_opt_expr_or_spread(&mut self, node: &mut Option<ExprOrSpread>)
Visit a node of type
Option < ExprOrSpread >
. Read more§fn visit_mut_opt_expr_or_spreads(
&mut self,
node: &mut Option<Vec<ExprOrSpread>>,
)
fn visit_mut_opt_expr_or_spreads( &mut self, node: &mut Option<Vec<ExprOrSpread>>, )
Visit a node of type
Option < Vec < ExprOrSpread > >
. Read more§fn visit_mut_opt_ident(&mut self, node: &mut Option<Ident>)
fn visit_mut_opt_ident(&mut self, node: &mut Option<Ident>)
Visit a node of type
Option < Ident >
. Read more§fn visit_mut_opt_jsx_attr_value(&mut self, node: &mut Option<JSXAttrValue>)
fn visit_mut_opt_jsx_attr_value(&mut self, node: &mut Option<JSXAttrValue>)
Visit a node of type
Option < JSXAttrValue >
. Read more§fn visit_mut_opt_jsx_closing_element(
&mut self,
node: &mut Option<JSXClosingElement>,
)
fn visit_mut_opt_jsx_closing_element( &mut self, node: &mut Option<JSXClosingElement>, )
Visit a node of type
Option < JSXClosingElement >
. Read more§fn visit_mut_opt_module_export_name(
&mut self,
node: &mut Option<ModuleExportName>,
)
fn visit_mut_opt_module_export_name( &mut self, node: &mut Option<ModuleExportName>, )
Visit a node of type
Option < ModuleExportName >
. Read more§fn visit_mut_opt_object_lit(&mut self, node: &mut Option<Box<ObjectLit>>)
fn visit_mut_opt_object_lit(&mut self, node: &mut Option<Box<ObjectLit>>)
Visit a node of type
Option < Box < ObjectLit > >
. Read more§fn visit_mut_opt_pat(&mut self, node: &mut Option<Pat>)
fn visit_mut_opt_pat(&mut self, node: &mut Option<Pat>)
Visit a node of type
Option < Pat >
. Read more§fn visit_mut_opt_span(&mut self, node: &mut Option<Span>)
fn visit_mut_opt_span(&mut self, node: &mut Option<Span>)
Visit a node of type
Option < swc_common :: Span >
. Read more§fn visit_mut_opt_stmt(&mut self, node: &mut Option<Box<Stmt>>)
fn visit_mut_opt_stmt(&mut self, node: &mut Option<Box<Stmt>>)
Visit a node of type
Option < Box < Stmt > >
. Read more§fn visit_mut_opt_str(&mut self, node: &mut Option<Box<Str>>)
fn visit_mut_opt_str(&mut self, node: &mut Option<Box<Str>>)
Visit a node of type
Option < Box < Str > >
. Read more§fn visit_mut_opt_true_plus_minus(&mut self, node: &mut Option<TruePlusMinus>)
fn visit_mut_opt_true_plus_minus(&mut self, node: &mut Option<TruePlusMinus>)
Visit a node of type
Option < TruePlusMinus >
. Read more§fn visit_mut_opt_ts_entity_name(&mut self, node: &mut Option<TsEntityName>)
fn visit_mut_opt_ts_entity_name(&mut self, node: &mut Option<TsEntityName>)
Visit a node of type
Option < TsEntityName >
. Read more§fn visit_mut_opt_ts_namespace_body(
&mut self,
node: &mut Option<TsNamespaceBody>,
)
fn visit_mut_opt_ts_namespace_body( &mut self, node: &mut Option<TsNamespaceBody>, )
Visit a node of type
Option < TsNamespaceBody >
. Read more§fn visit_mut_opt_ts_type(&mut self, node: &mut Option<Box<TsType>>)
fn visit_mut_opt_ts_type(&mut self, node: &mut Option<Box<TsType>>)
Visit a node of type
Option < Box < TsType > >
. Read more§fn visit_mut_opt_ts_type_ann(&mut self, node: &mut Option<Box<TsTypeAnn>>)
fn visit_mut_opt_ts_type_ann(&mut self, node: &mut Option<Box<TsTypeAnn>>)
Visit a node of type
Option < Box < TsTypeAnn > >
. Read more§fn visit_mut_opt_ts_type_param_decl(
&mut self,
node: &mut Option<Box<TsTypeParamDecl>>,
)
fn visit_mut_opt_ts_type_param_decl( &mut self, node: &mut Option<Box<TsTypeParamDecl>>, )
Visit a node of type
Option < Box < TsTypeParamDecl > >
. Read more§fn visit_mut_opt_ts_type_param_instantiation(
&mut self,
node: &mut Option<Box<TsTypeParamInstantiation>>,
)
fn visit_mut_opt_ts_type_param_instantiation( &mut self, node: &mut Option<Box<TsTypeParamInstantiation>>, )
Visit a node of type
Option < Box < TsTypeParamInstantiation > >
. Read more§fn visit_mut_opt_var_decl_or_expr(&mut self, node: &mut Option<VarDeclOrExpr>)
fn visit_mut_opt_var_decl_or_expr(&mut self, node: &mut Option<VarDeclOrExpr>)
Visit a node of type
Option < VarDeclOrExpr >
. Read more§fn visit_mut_opt_vec_expr_or_spreads(
&mut self,
node: &mut Vec<Option<ExprOrSpread>>,
)
fn visit_mut_opt_vec_expr_or_spreads( &mut self, node: &mut Vec<Option<ExprOrSpread>>, )
Visit a node of type
Vec < Option < ExprOrSpread > >
. Read more§fn visit_mut_opt_vec_pats(&mut self, node: &mut Vec<Option<Pat>>)
fn visit_mut_opt_vec_pats(&mut self, node: &mut Vec<Option<Pat>>)
Visit a node of type
Vec < Option < Pat > >
. Read more§fn visit_mut_param(&mut self, node: &mut Param)
fn visit_mut_param(&mut self, node: &mut Param)
Visit a node of type
Param
. Read more§fn visit_mut_param_or_ts_param_prop(&mut self, node: &mut ParamOrTsParamProp)
fn visit_mut_param_or_ts_param_prop(&mut self, node: &mut ParamOrTsParamProp)
Visit a node of type
ParamOrTsParamProp
. Read more§fn visit_mut_param_or_ts_param_props(
&mut self,
node: &mut Vec<ParamOrTsParamProp>,
)
fn visit_mut_param_or_ts_param_props( &mut self, node: &mut Vec<ParamOrTsParamProp>, )
Visit a node of type
Vec < ParamOrTsParamProp >
. Read more§fn visit_mut_params(&mut self, node: &mut Vec<Param>)
fn visit_mut_params(&mut self, node: &mut Vec<Param>)
Visit a node of type
Vec < Param >
. Read more§fn visit_mut_paren_expr(&mut self, node: &mut ParenExpr)
fn visit_mut_paren_expr(&mut self, node: &mut ParenExpr)
Visit a node of type
ParenExpr
. Read more§fn visit_mut_pat(&mut self, node: &mut Pat)
fn visit_mut_pat(&mut self, node: &mut Pat)
Visit a node of type
Pat
. Read more§fn visit_mut_pats(&mut self, node: &mut Vec<Pat>)
fn visit_mut_pats(&mut self, node: &mut Vec<Pat>)
Visit a node of type
Vec < Pat >
. Read more§fn visit_mut_private_method(&mut self, node: &mut PrivateMethod)
fn visit_mut_private_method(&mut self, node: &mut PrivateMethod)
Visit a node of type
PrivateMethod
. Read more§fn visit_mut_private_name(&mut self, node: &mut PrivateName)
fn visit_mut_private_name(&mut self, node: &mut PrivateName)
Visit a node of type
PrivateName
. Read more§fn visit_mut_private_prop(&mut self, node: &mut PrivateProp)
fn visit_mut_private_prop(&mut self, node: &mut PrivateProp)
Visit a node of type
PrivateProp
. Read more§fn visit_mut_program(&mut self, node: &mut Program)
fn visit_mut_program(&mut self, node: &mut Program)
Visit a node of type
Program
. Read more§fn visit_mut_prop(&mut self, node: &mut Prop)
fn visit_mut_prop(&mut self, node: &mut Prop)
Visit a node of type
Prop
. Read more§fn visit_mut_prop_name(&mut self, node: &mut PropName)
fn visit_mut_prop_name(&mut self, node: &mut PropName)
Visit a node of type
PropName
. Read more§fn visit_mut_prop_or_spread(&mut self, node: &mut PropOrSpread)
fn visit_mut_prop_or_spread(&mut self, node: &mut PropOrSpread)
Visit a node of type
PropOrSpread
. Read more§fn visit_mut_prop_or_spreads(&mut self, node: &mut Vec<PropOrSpread>)
fn visit_mut_prop_or_spreads(&mut self, node: &mut Vec<PropOrSpread>)
Visit a node of type
Vec < PropOrSpread >
. Read more§fn visit_mut_regex(&mut self, node: &mut Regex)
fn visit_mut_regex(&mut self, node: &mut Regex)
Visit a node of type
Regex
. Read more§fn visit_mut_rest_pat(&mut self, node: &mut RestPat)
fn visit_mut_rest_pat(&mut self, node: &mut RestPat)
Visit a node of type
RestPat
. Read more§fn visit_mut_return_stmt(&mut self, node: &mut ReturnStmt)
fn visit_mut_return_stmt(&mut self, node: &mut ReturnStmt)
Visit a node of type
ReturnStmt
. Read more§fn visit_mut_script(&mut self, node: &mut Script)
fn visit_mut_script(&mut self, node: &mut Script)
Visit a node of type
Script
. Read more§fn visit_mut_seq_expr(&mut self, node: &mut SeqExpr)
fn visit_mut_seq_expr(&mut self, node: &mut SeqExpr)
Visit a node of type
SeqExpr
. Read more§fn visit_mut_setter_prop(&mut self, node: &mut SetterProp)
fn visit_mut_setter_prop(&mut self, node: &mut SetterProp)
Visit a node of type
SetterProp
. Read more§fn visit_mut_simple_assign_target(&mut self, node: &mut SimpleAssignTarget)
fn visit_mut_simple_assign_target(&mut self, node: &mut SimpleAssignTarget)
Visit a node of type
SimpleAssignTarget
. Read more§fn visit_mut_span(&mut self, node: &mut Span)
fn visit_mut_span(&mut self, node: &mut Span)
Visit a node of type
swc_common :: Span
. Read more§fn visit_mut_spread_element(&mut self, node: &mut SpreadElement)
fn visit_mut_spread_element(&mut self, node: &mut SpreadElement)
Visit a node of type
SpreadElement
. Read more§fn visit_mut_static_block(&mut self, node: &mut StaticBlock)
fn visit_mut_static_block(&mut self, node: &mut StaticBlock)
Visit a node of type
StaticBlock
. Read more§fn visit_mut_stmt(&mut self, node: &mut Stmt)
fn visit_mut_stmt(&mut self, node: &mut Stmt)
Visit a node of type
Stmt
. Read more§fn visit_mut_stmts(&mut self, node: &mut Vec<Stmt>)
fn visit_mut_stmts(&mut self, node: &mut Vec<Stmt>)
Visit a node of type
Vec < Stmt >
. Read more§fn visit_mut_str(&mut self, node: &mut Str)
fn visit_mut_str(&mut self, node: &mut Str)
Visit a node of type
Str
. Read more§fn visit_mut_super(&mut self, node: &mut Super)
fn visit_mut_super(&mut self, node: &mut Super)
Visit a node of type
Super
. Read more§fn visit_mut_super_prop(&mut self, node: &mut SuperProp)
fn visit_mut_super_prop(&mut self, node: &mut SuperProp)
Visit a node of type
SuperProp
. Read more§fn visit_mut_super_prop_expr(&mut self, node: &mut SuperPropExpr)
fn visit_mut_super_prop_expr(&mut self, node: &mut SuperPropExpr)
Visit a node of type
SuperPropExpr
. Read more§fn visit_mut_switch_case(&mut self, node: &mut SwitchCase)
fn visit_mut_switch_case(&mut self, node: &mut SwitchCase)
Visit a node of type
SwitchCase
. Read more§fn visit_mut_switch_cases(&mut self, node: &mut Vec<SwitchCase>)
fn visit_mut_switch_cases(&mut self, node: &mut Vec<SwitchCase>)
Visit a node of type
Vec < SwitchCase >
. Read more§fn visit_mut_switch_stmt(&mut self, node: &mut SwitchStmt)
fn visit_mut_switch_stmt(&mut self, node: &mut SwitchStmt)
Visit a node of type
SwitchStmt
. Read more§fn visit_mut_syntax_context(&mut self, node: &mut SyntaxContext)
fn visit_mut_syntax_context(&mut self, node: &mut SyntaxContext)
Visit a node of type
swc_common :: SyntaxContext
. Read more§fn visit_mut_tagged_tpl(&mut self, node: &mut TaggedTpl)
fn visit_mut_tagged_tpl(&mut self, node: &mut TaggedTpl)
Visit a node of type
TaggedTpl
. Read more§fn visit_mut_this_expr(&mut self, node: &mut ThisExpr)
fn visit_mut_this_expr(&mut self, node: &mut ThisExpr)
Visit a node of type
ThisExpr
. Read more§fn visit_mut_throw_stmt(&mut self, node: &mut ThrowStmt)
fn visit_mut_throw_stmt(&mut self, node: &mut ThrowStmt)
Visit a node of type
ThrowStmt
. Read more§fn visit_mut_tpl(&mut self, node: &mut Tpl)
fn visit_mut_tpl(&mut self, node: &mut Tpl)
Visit a node of type
Tpl
. Read more§fn visit_mut_tpl_element(&mut self, node: &mut TplElement)
fn visit_mut_tpl_element(&mut self, node: &mut TplElement)
Visit a node of type
TplElement
. Read more§fn visit_mut_tpl_elements(&mut self, node: &mut Vec<TplElement>)
fn visit_mut_tpl_elements(&mut self, node: &mut Vec<TplElement>)
Visit a node of type
Vec < TplElement >
. Read more§fn visit_mut_true_plus_minus(&mut self, node: &mut TruePlusMinus)
fn visit_mut_true_plus_minus(&mut self, node: &mut TruePlusMinus)
Visit a node of type
TruePlusMinus
. Read more§fn visit_mut_try_stmt(&mut self, node: &mut TryStmt)
fn visit_mut_try_stmt(&mut self, node: &mut TryStmt)
Visit a node of type
TryStmt
. Read more§fn visit_mut_ts_array_type(&mut self, node: &mut TsArrayType)
fn visit_mut_ts_array_type(&mut self, node: &mut TsArrayType)
Visit a node of type
TsArrayType
. Read more§fn visit_mut_ts_as_expr(&mut self, node: &mut TsAsExpr)
fn visit_mut_ts_as_expr(&mut self, node: &mut TsAsExpr)
Visit a node of type
TsAsExpr
. Read more§fn visit_mut_ts_call_signature_decl(&mut self, node: &mut TsCallSignatureDecl)
fn visit_mut_ts_call_signature_decl(&mut self, node: &mut TsCallSignatureDecl)
Visit a node of type
TsCallSignatureDecl
. Read more§fn visit_mut_ts_conditional_type(&mut self, node: &mut TsConditionalType)
fn visit_mut_ts_conditional_type(&mut self, node: &mut TsConditionalType)
Visit a node of type
TsConditionalType
. Read more§fn visit_mut_ts_const_assertion(&mut self, node: &mut TsConstAssertion)
fn visit_mut_ts_const_assertion(&mut self, node: &mut TsConstAssertion)
Visit a node of type
TsConstAssertion
. Read more§fn visit_mut_ts_construct_signature_decl(
&mut self,
node: &mut TsConstructSignatureDecl,
)
fn visit_mut_ts_construct_signature_decl( &mut self, node: &mut TsConstructSignatureDecl, )
Visit a node of type
TsConstructSignatureDecl
. Read more§fn visit_mut_ts_constructor_type(&mut self, node: &mut TsConstructorType)
fn visit_mut_ts_constructor_type(&mut self, node: &mut TsConstructorType)
Visit a node of type
TsConstructorType
. Read more§fn visit_mut_ts_entity_name(&mut self, node: &mut TsEntityName)
fn visit_mut_ts_entity_name(&mut self, node: &mut TsEntityName)
Visit a node of type
TsEntityName
. Read more§fn visit_mut_ts_enum_decl(&mut self, node: &mut TsEnumDecl)
fn visit_mut_ts_enum_decl(&mut self, node: &mut TsEnumDecl)
Visit a node of type
TsEnumDecl
. Read more§fn visit_mut_ts_enum_member(&mut self, node: &mut TsEnumMember)
fn visit_mut_ts_enum_member(&mut self, node: &mut TsEnumMember)
Visit a node of type
TsEnumMember
. Read more§fn visit_mut_ts_enum_member_id(&mut self, node: &mut TsEnumMemberId)
fn visit_mut_ts_enum_member_id(&mut self, node: &mut TsEnumMemberId)
Visit a node of type
TsEnumMemberId
. Read more§fn visit_mut_ts_enum_members(&mut self, node: &mut Vec<TsEnumMember>)
fn visit_mut_ts_enum_members(&mut self, node: &mut Vec<TsEnumMember>)
Visit a node of type
Vec < TsEnumMember >
. Read more§fn visit_mut_ts_export_assignment(&mut self, node: &mut TsExportAssignment)
fn visit_mut_ts_export_assignment(&mut self, node: &mut TsExportAssignment)
Visit a node of type
TsExportAssignment
. Read more§fn visit_mut_ts_expr_with_type_args(&mut self, node: &mut TsExprWithTypeArgs)
fn visit_mut_ts_expr_with_type_args(&mut self, node: &mut TsExprWithTypeArgs)
Visit a node of type
TsExprWithTypeArgs
. Read more§fn visit_mut_ts_expr_with_type_argss(
&mut self,
node: &mut Vec<TsExprWithTypeArgs>,
)
fn visit_mut_ts_expr_with_type_argss( &mut self, node: &mut Vec<TsExprWithTypeArgs>, )
Visit a node of type
Vec < TsExprWithTypeArgs >
. Read more§fn visit_mut_ts_external_module_ref(&mut self, node: &mut TsExternalModuleRef)
fn visit_mut_ts_external_module_ref(&mut self, node: &mut TsExternalModuleRef)
Visit a node of type
TsExternalModuleRef
. Read more§fn visit_mut_ts_fn_or_constructor_type(
&mut self,
node: &mut TsFnOrConstructorType,
)
fn visit_mut_ts_fn_or_constructor_type( &mut self, node: &mut TsFnOrConstructorType, )
Visit a node of type
TsFnOrConstructorType
. Read more§fn visit_mut_ts_fn_param(&mut self, node: &mut TsFnParam)
fn visit_mut_ts_fn_param(&mut self, node: &mut TsFnParam)
Visit a node of type
TsFnParam
. Read more§fn visit_mut_ts_fn_params(&mut self, node: &mut Vec<TsFnParam>)
fn visit_mut_ts_fn_params(&mut self, node: &mut Vec<TsFnParam>)
Visit a node of type
Vec < TsFnParam >
. Read more§fn visit_mut_ts_fn_type(&mut self, node: &mut TsFnType)
fn visit_mut_ts_fn_type(&mut self, node: &mut TsFnType)
Visit a node of type
TsFnType
. Read more§fn visit_mut_ts_getter_signature(&mut self, node: &mut TsGetterSignature)
fn visit_mut_ts_getter_signature(&mut self, node: &mut TsGetterSignature)
Visit a node of type
TsGetterSignature
. Read more§fn visit_mut_ts_import_equals_decl(&mut self, node: &mut TsImportEqualsDecl)
fn visit_mut_ts_import_equals_decl(&mut self, node: &mut TsImportEqualsDecl)
Visit a node of type
TsImportEqualsDecl
. Read more§fn visit_mut_ts_import_type(&mut self, node: &mut TsImportType)
fn visit_mut_ts_import_type(&mut self, node: &mut TsImportType)
Visit a node of type
TsImportType
. Read more§fn visit_mut_ts_index_signature(&mut self, node: &mut TsIndexSignature)
fn visit_mut_ts_index_signature(&mut self, node: &mut TsIndexSignature)
Visit a node of type
TsIndexSignature
. Read more§fn visit_mut_ts_indexed_access_type(&mut self, node: &mut TsIndexedAccessType)
fn visit_mut_ts_indexed_access_type(&mut self, node: &mut TsIndexedAccessType)
Visit a node of type
TsIndexedAccessType
. Read more§fn visit_mut_ts_infer_type(&mut self, node: &mut TsInferType)
fn visit_mut_ts_infer_type(&mut self, node: &mut TsInferType)
Visit a node of type
TsInferType
. Read more§fn visit_mut_ts_instantiation(&mut self, node: &mut TsInstantiation)
fn visit_mut_ts_instantiation(&mut self, node: &mut TsInstantiation)
Visit a node of type
TsInstantiation
. Read more§fn visit_mut_ts_interface_body(&mut self, node: &mut TsInterfaceBody)
fn visit_mut_ts_interface_body(&mut self, node: &mut TsInterfaceBody)
Visit a node of type
TsInterfaceBody
. Read more§fn visit_mut_ts_interface_decl(&mut self, node: &mut TsInterfaceDecl)
fn visit_mut_ts_interface_decl(&mut self, node: &mut TsInterfaceDecl)
Visit a node of type
TsInterfaceDecl
. Read more§fn visit_mut_ts_intersection_type(&mut self, node: &mut TsIntersectionType)
fn visit_mut_ts_intersection_type(&mut self, node: &mut TsIntersectionType)
Visit a node of type
TsIntersectionType
. Read more§fn visit_mut_ts_keyword_type(&mut self, node: &mut TsKeywordType)
fn visit_mut_ts_keyword_type(&mut self, node: &mut TsKeywordType)
Visit a node of type
TsKeywordType
. Read more§fn visit_mut_ts_keyword_type_kind(&mut self, node: &mut TsKeywordTypeKind)
fn visit_mut_ts_keyword_type_kind(&mut self, node: &mut TsKeywordTypeKind)
Visit a node of type
TsKeywordTypeKind
. Read more§fn visit_mut_ts_lit(&mut self, node: &mut TsLit)
fn visit_mut_ts_lit(&mut self, node: &mut TsLit)
Visit a node of type
TsLit
. Read more§fn visit_mut_ts_lit_type(&mut self, node: &mut TsLitType)
fn visit_mut_ts_lit_type(&mut self, node: &mut TsLitType)
Visit a node of type
TsLitType
. Read more§fn visit_mut_ts_mapped_type(&mut self, node: &mut TsMappedType)
fn visit_mut_ts_mapped_type(&mut self, node: &mut TsMappedType)
Visit a node of type
TsMappedType
. Read more§fn visit_mut_ts_method_signature(&mut self, node: &mut TsMethodSignature)
fn visit_mut_ts_method_signature(&mut self, node: &mut TsMethodSignature)
Visit a node of type
TsMethodSignature
. Read more§fn visit_mut_ts_module_block(&mut self, node: &mut TsModuleBlock)
fn visit_mut_ts_module_block(&mut self, node: &mut TsModuleBlock)
Visit a node of type
TsModuleBlock
. Read more§fn visit_mut_ts_module_decl(&mut self, node: &mut TsModuleDecl)
fn visit_mut_ts_module_decl(&mut self, node: &mut TsModuleDecl)
Visit a node of type
TsModuleDecl
. Read more§fn visit_mut_ts_module_name(&mut self, node: &mut TsModuleName)
fn visit_mut_ts_module_name(&mut self, node: &mut TsModuleName)
Visit a node of type
TsModuleName
. Read more§fn visit_mut_ts_module_ref(&mut self, node: &mut TsModuleRef)
fn visit_mut_ts_module_ref(&mut self, node: &mut TsModuleRef)
Visit a node of type
TsModuleRef
. Read more§fn visit_mut_ts_namespace_body(&mut self, node: &mut TsNamespaceBody)
fn visit_mut_ts_namespace_body(&mut self, node: &mut TsNamespaceBody)
Visit a node of type
TsNamespaceBody
. Read more§fn visit_mut_ts_namespace_decl(&mut self, node: &mut TsNamespaceDecl)
fn visit_mut_ts_namespace_decl(&mut self, node: &mut TsNamespaceDecl)
Visit a node of type
TsNamespaceDecl
. Read more§fn visit_mut_ts_namespace_export_decl(
&mut self,
node: &mut TsNamespaceExportDecl,
)
fn visit_mut_ts_namespace_export_decl( &mut self, node: &mut TsNamespaceExportDecl, )
Visit a node of type
TsNamespaceExportDecl
. Read more§fn visit_mut_ts_non_null_expr(&mut self, node: &mut TsNonNullExpr)
fn visit_mut_ts_non_null_expr(&mut self, node: &mut TsNonNullExpr)
Visit a node of type
TsNonNullExpr
. Read more§fn visit_mut_ts_optional_type(&mut self, node: &mut TsOptionalType)
fn visit_mut_ts_optional_type(&mut self, node: &mut TsOptionalType)
Visit a node of type
TsOptionalType
. Read more§fn visit_mut_ts_param_prop(&mut self, node: &mut TsParamProp)
fn visit_mut_ts_param_prop(&mut self, node: &mut TsParamProp)
Visit a node of type
TsParamProp
. Read more§fn visit_mut_ts_param_prop_param(&mut self, node: &mut TsParamPropParam)
fn visit_mut_ts_param_prop_param(&mut self, node: &mut TsParamPropParam)
Visit a node of type
TsParamPropParam
. Read more§fn visit_mut_ts_parenthesized_type(&mut self, node: &mut TsParenthesizedType)
fn visit_mut_ts_parenthesized_type(&mut self, node: &mut TsParenthesizedType)
Visit a node of type
TsParenthesizedType
. Read more§fn visit_mut_ts_property_signature(&mut self, node: &mut TsPropertySignature)
fn visit_mut_ts_property_signature(&mut self, node: &mut TsPropertySignature)
Visit a node of type
TsPropertySignature
. Read more§fn visit_mut_ts_qualified_name(&mut self, node: &mut TsQualifiedName)
fn visit_mut_ts_qualified_name(&mut self, node: &mut TsQualifiedName)
Visit a node of type
TsQualifiedName
. Read more§fn visit_mut_ts_rest_type(&mut self, node: &mut TsRestType)
fn visit_mut_ts_rest_type(&mut self, node: &mut TsRestType)
Visit a node of type
TsRestType
. Read more§fn visit_mut_ts_satisfies_expr(&mut self, node: &mut TsSatisfiesExpr)
fn visit_mut_ts_satisfies_expr(&mut self, node: &mut TsSatisfiesExpr)
Visit a node of type
TsSatisfiesExpr
. Read more§fn visit_mut_ts_setter_signature(&mut self, node: &mut TsSetterSignature)
fn visit_mut_ts_setter_signature(&mut self, node: &mut TsSetterSignature)
Visit a node of type
TsSetterSignature
. Read more§fn visit_mut_ts_this_type(&mut self, node: &mut TsThisType)
fn visit_mut_ts_this_type(&mut self, node: &mut TsThisType)
Visit a node of type
TsThisType
. Read more§fn visit_mut_ts_this_type_or_ident(&mut self, node: &mut TsThisTypeOrIdent)
fn visit_mut_ts_this_type_or_ident(&mut self, node: &mut TsThisTypeOrIdent)
Visit a node of type
TsThisTypeOrIdent
. Read more§fn visit_mut_ts_tpl_lit_type(&mut self, node: &mut TsTplLitType)
fn visit_mut_ts_tpl_lit_type(&mut self, node: &mut TsTplLitType)
Visit a node of type
TsTplLitType
. Read more§fn visit_mut_ts_tuple_element(&mut self, node: &mut TsTupleElement)
fn visit_mut_ts_tuple_element(&mut self, node: &mut TsTupleElement)
Visit a node of type
TsTupleElement
. Read more§fn visit_mut_ts_tuple_elements(&mut self, node: &mut Vec<TsTupleElement>)
fn visit_mut_ts_tuple_elements(&mut self, node: &mut Vec<TsTupleElement>)
Visit a node of type
Vec < TsTupleElement >
. Read more§fn visit_mut_ts_tuple_type(&mut self, node: &mut TsTupleType)
fn visit_mut_ts_tuple_type(&mut self, node: &mut TsTupleType)
Visit a node of type
TsTupleType
. Read more§fn visit_mut_ts_type(&mut self, node: &mut TsType)
fn visit_mut_ts_type(&mut self, node: &mut TsType)
Visit a node of type
TsType
. Read more§fn visit_mut_ts_type_alias_decl(&mut self, node: &mut TsTypeAliasDecl)
fn visit_mut_ts_type_alias_decl(&mut self, node: &mut TsTypeAliasDecl)
Visit a node of type
TsTypeAliasDecl
. Read more§fn visit_mut_ts_type_ann(&mut self, node: &mut TsTypeAnn)
fn visit_mut_ts_type_ann(&mut self, node: &mut TsTypeAnn)
Visit a node of type
TsTypeAnn
. Read more§fn visit_mut_ts_type_assertion(&mut self, node: &mut TsTypeAssertion)
fn visit_mut_ts_type_assertion(&mut self, node: &mut TsTypeAssertion)
Visit a node of type
TsTypeAssertion
. Read more§fn visit_mut_ts_type_element(&mut self, node: &mut TsTypeElement)
fn visit_mut_ts_type_element(&mut self, node: &mut TsTypeElement)
Visit a node of type
TsTypeElement
. Read more§fn visit_mut_ts_type_elements(&mut self, node: &mut Vec<TsTypeElement>)
fn visit_mut_ts_type_elements(&mut self, node: &mut Vec<TsTypeElement>)
Visit a node of type
Vec < TsTypeElement >
. Read more§fn visit_mut_ts_type_lit(&mut self, node: &mut TsTypeLit)
fn visit_mut_ts_type_lit(&mut self, node: &mut TsTypeLit)
Visit a node of type
TsTypeLit
. Read more§fn visit_mut_ts_type_operator(&mut self, node: &mut TsTypeOperator)
fn visit_mut_ts_type_operator(&mut self, node: &mut TsTypeOperator)
Visit a node of type
TsTypeOperator
. Read more§fn visit_mut_ts_type_operator_op(&mut self, node: &mut TsTypeOperatorOp)
fn visit_mut_ts_type_operator_op(&mut self, node: &mut TsTypeOperatorOp)
Visit a node of type
TsTypeOperatorOp
. Read more§fn visit_mut_ts_type_param(&mut self, node: &mut TsTypeParam)
fn visit_mut_ts_type_param(&mut self, node: &mut TsTypeParam)
Visit a node of type
TsTypeParam
. Read more§fn visit_mut_ts_type_param_decl(&mut self, node: &mut TsTypeParamDecl)
fn visit_mut_ts_type_param_decl(&mut self, node: &mut TsTypeParamDecl)
Visit a node of type
TsTypeParamDecl
. Read more§fn visit_mut_ts_type_param_instantiation(
&mut self,
node: &mut TsTypeParamInstantiation,
)
fn visit_mut_ts_type_param_instantiation( &mut self, node: &mut TsTypeParamInstantiation, )
Visit a node of type
TsTypeParamInstantiation
. Read more§fn visit_mut_ts_type_params(&mut self, node: &mut Vec<TsTypeParam>)
fn visit_mut_ts_type_params(&mut self, node: &mut Vec<TsTypeParam>)
Visit a node of type
Vec < TsTypeParam >
. Read more§fn visit_mut_ts_type_predicate(&mut self, node: &mut TsTypePredicate)
fn visit_mut_ts_type_predicate(&mut self, node: &mut TsTypePredicate)
Visit a node of type
TsTypePredicate
. Read more§fn visit_mut_ts_type_query(&mut self, node: &mut TsTypeQuery)
fn visit_mut_ts_type_query(&mut self, node: &mut TsTypeQuery)
Visit a node of type
TsTypeQuery
. Read more§fn visit_mut_ts_type_query_expr(&mut self, node: &mut TsTypeQueryExpr)
fn visit_mut_ts_type_query_expr(&mut self, node: &mut TsTypeQueryExpr)
Visit a node of type
TsTypeQueryExpr
. Read more§fn visit_mut_ts_type_ref(&mut self, node: &mut TsTypeRef)
fn visit_mut_ts_type_ref(&mut self, node: &mut TsTypeRef)
Visit a node of type
TsTypeRef
. Read more§fn visit_mut_ts_types(&mut self, node: &mut Vec<Box<TsType>>)
fn visit_mut_ts_types(&mut self, node: &mut Vec<Box<TsType>>)
Visit a node of type
Vec < Box < TsType > >
. Read more§fn visit_mut_ts_union_or_intersection_type(
&mut self,
node: &mut TsUnionOrIntersectionType,
)
fn visit_mut_ts_union_or_intersection_type( &mut self, node: &mut TsUnionOrIntersectionType, )
Visit a node of type
TsUnionOrIntersectionType
. Read more§fn visit_mut_ts_union_type(&mut self, node: &mut TsUnionType)
fn visit_mut_ts_union_type(&mut self, node: &mut TsUnionType)
Visit a node of type
TsUnionType
. Read more§fn visit_mut_unary_expr(&mut self, node: &mut UnaryExpr)
fn visit_mut_unary_expr(&mut self, node: &mut UnaryExpr)
Visit a node of type
UnaryExpr
. Read more§fn visit_mut_unary_op(&mut self, node: &mut UnaryOp)
fn visit_mut_unary_op(&mut self, node: &mut UnaryOp)
Visit a node of type
UnaryOp
. Read more§fn visit_mut_update_expr(&mut self, node: &mut UpdateExpr)
fn visit_mut_update_expr(&mut self, node: &mut UpdateExpr)
Visit a node of type
UpdateExpr
. Read more§fn visit_mut_update_op(&mut self, node: &mut UpdateOp)
fn visit_mut_update_op(&mut self, node: &mut UpdateOp)
Visit a node of type
UpdateOp
. Read more§fn visit_mut_using_decl(&mut self, node: &mut UsingDecl)
fn visit_mut_using_decl(&mut self, node: &mut UsingDecl)
Visit a node of type
UsingDecl
. Read more§fn visit_mut_var_decl(&mut self, node: &mut VarDecl)
fn visit_mut_var_decl(&mut self, node: &mut VarDecl)
Visit a node of type
VarDecl
. Read more§fn visit_mut_var_decl_kind(&mut self, node: &mut VarDeclKind)
fn visit_mut_var_decl_kind(&mut self, node: &mut VarDeclKind)
Visit a node of type
VarDeclKind
. Read more§fn visit_mut_var_decl_or_expr(&mut self, node: &mut VarDeclOrExpr)
fn visit_mut_var_decl_or_expr(&mut self, node: &mut VarDeclOrExpr)
Visit a node of type
VarDeclOrExpr
. Read more§fn visit_mut_var_declarator(&mut self, node: &mut VarDeclarator)
fn visit_mut_var_declarator(&mut self, node: &mut VarDeclarator)
Visit a node of type
VarDeclarator
. Read more§fn visit_mut_var_declarators(&mut self, node: &mut Vec<VarDeclarator>)
fn visit_mut_var_declarators(&mut self, node: &mut Vec<VarDeclarator>)
Visit a node of type
Vec < VarDeclarator >
. Read more§fn visit_mut_while_stmt(&mut self, node: &mut WhileStmt)
fn visit_mut_while_stmt(&mut self, node: &mut WhileStmt)
Visit a node of type
WhileStmt
. Read more§fn visit_mut_with_stmt(&mut self, node: &mut WithStmt)
fn visit_mut_with_stmt(&mut self, node: &mut WithStmt)
Visit a node of type
WithStmt
. Read more§fn visit_mut_yield_expr(&mut self, node: &mut YieldExpr)
fn visit_mut_yield_expr(&mut self, node: &mut YieldExpr)
Visit a node of type
YieldExpr
. Read more§impl<V> VisitMut for Optional<V>where
V: VisitMut,
impl<V> VisitMut for Optional<V>where
V: VisitMut,
§fn visit_mut_absolute_color_base(&mut self, node: &mut AbsoluteColorBase)
fn visit_mut_absolute_color_base(&mut self, node: &mut AbsoluteColorBase)
Visit a node of type
AbsoluteColorBase
. Read more§fn visit_mut_alpha_value(&mut self, node: &mut AlphaValue)
fn visit_mut_alpha_value(&mut self, node: &mut AlphaValue)
Visit a node of type
AlphaValue
. Read more§fn visit_mut_an_plus_b(&mut self, node: &mut AnPlusB)
fn visit_mut_an_plus_b(&mut self, node: &mut AnPlusB)
Visit a node of type
AnPlusB
. Read more§fn visit_mut_an_plus_b_notation(&mut self, node: &mut AnPlusBNotation)
fn visit_mut_an_plus_b_notation(&mut self, node: &mut AnPlusBNotation)
Visit a node of type
AnPlusBNotation
. Read more§fn visit_mut_angle(&mut self, node: &mut Angle)
fn visit_mut_angle(&mut self, node: &mut Angle)
Visit a node of type
Angle
. Read more§fn visit_mut_angle_percentage(&mut self, node: &mut AnglePercentage)
fn visit_mut_angle_percentage(&mut self, node: &mut AnglePercentage)
Visit a node of type
AnglePercentage
. Read more§fn visit_mut_any_namespace(&mut self, node: &mut AnyNamespace)
fn visit_mut_any_namespace(&mut self, node: &mut AnyNamespace)
Visit a node of type
AnyNamespace
. Read more§fn visit_mut_at_rule(&mut self, node: &mut AtRule)
fn visit_mut_at_rule(&mut self, node: &mut AtRule)
Visit a node of type
AtRule
. Read more§fn visit_mut_at_rule_name(&mut self, node: &mut AtRuleName)
fn visit_mut_at_rule_name(&mut self, node: &mut AtRuleName)
Visit a node of type
AtRuleName
. Read more§fn visit_mut_at_rule_prelude(&mut self, node: &mut AtRulePrelude)
fn visit_mut_at_rule_prelude(&mut self, node: &mut AtRulePrelude)
Visit a node of type
AtRulePrelude
. Read more§fn visit_mut_atom(&mut self, node: &mut Atom)
fn visit_mut_atom(&mut self, node: &mut Atom)
Visit a node of type
swc_atoms :: Atom
. Read more§fn visit_mut_attribute_selector(&mut self, node: &mut AttributeSelector)
fn visit_mut_attribute_selector(&mut self, node: &mut AttributeSelector)
Visit a node of type
AttributeSelector
. Read more§fn visit_mut_attribute_selector_matcher(
&mut self,
node: &mut AttributeSelectorMatcher,
)
fn visit_mut_attribute_selector_matcher( &mut self, node: &mut AttributeSelectorMatcher, )
Visit a node of type
AttributeSelectorMatcher
. Read more§fn visit_mut_attribute_selector_matcher_value(
&mut self,
node: &mut AttributeSelectorMatcherValue,
)
fn visit_mut_attribute_selector_matcher_value( &mut self, node: &mut AttributeSelectorMatcherValue, )
Visit a node of type
AttributeSelectorMatcherValue
. Read more§fn visit_mut_attribute_selector_modifier(
&mut self,
node: &mut AttributeSelectorModifier,
)
fn visit_mut_attribute_selector_modifier( &mut self, node: &mut AttributeSelectorModifier, )
Visit a node of type
AttributeSelectorModifier
. Read more§fn visit_mut_attribute_selector_value(
&mut self,
node: &mut AttributeSelectorValue,
)
fn visit_mut_attribute_selector_value( &mut self, node: &mut AttributeSelectorValue, )
Visit a node of type
AttributeSelectorValue
. Read more§fn visit_mut_bin_op(&mut self, node: &mut BinOp)
fn visit_mut_bin_op(&mut self, node: &mut BinOp)
Visit a node of type
BinOp
. Read more§fn visit_mut_calc_operator(&mut self, node: &mut CalcOperator)
fn visit_mut_calc_operator(&mut self, node: &mut CalcOperator)
Visit a node of type
CalcOperator
. Read more§fn visit_mut_calc_operator_type(&mut self, node: &mut CalcOperatorType)
fn visit_mut_calc_operator_type(&mut self, node: &mut CalcOperatorType)
Visit a node of type
CalcOperatorType
. Read more§fn visit_mut_calc_product(&mut self, node: &mut CalcProduct)
fn visit_mut_calc_product(&mut self, node: &mut CalcProduct)
Visit a node of type
CalcProduct
. Read more§fn visit_mut_calc_product_or_operator(
&mut self,
node: &mut CalcProductOrOperator,
)
fn visit_mut_calc_product_or_operator( &mut self, node: &mut CalcProductOrOperator, )
Visit a node of type
CalcProductOrOperator
. Read more§fn visit_mut_calc_product_or_operators(
&mut self,
node: &mut Vec<CalcProductOrOperator>,
)
fn visit_mut_calc_product_or_operators( &mut self, node: &mut Vec<CalcProductOrOperator>, )
Visit a node of type
Vec < CalcProductOrOperator >
. Read more§fn visit_mut_calc_sum(&mut self, node: &mut CalcSum)
fn visit_mut_calc_sum(&mut self, node: &mut CalcSum)
Visit a node of type
CalcSum
. Read more§fn visit_mut_calc_value(&mut self, node: &mut CalcValue)
fn visit_mut_calc_value(&mut self, node: &mut CalcValue)
Visit a node of type
CalcValue
. Read more§fn visit_mut_calc_value_or_operator(&mut self, node: &mut CalcValueOrOperator)
fn visit_mut_calc_value_or_operator(&mut self, node: &mut CalcValueOrOperator)
Visit a node of type
CalcValueOrOperator
. Read more§fn visit_mut_calc_value_or_operators(
&mut self,
node: &mut Vec<CalcValueOrOperator>,
)
fn visit_mut_calc_value_or_operators( &mut self, node: &mut Vec<CalcValueOrOperator>, )
Visit a node of type
Vec < CalcValueOrOperator >
. Read more§fn visit_mut_class_selector(&mut self, node: &mut ClassSelector)
fn visit_mut_class_selector(&mut self, node: &mut ClassSelector)
Visit a node of type
ClassSelector
. Read more§fn visit_mut_cmyk_component(&mut self, node: &mut CmykComponent)
fn visit_mut_cmyk_component(&mut self, node: &mut CmykComponent)
Visit a node of type
CmykComponent
. Read more§fn visit_mut_color(&mut self, node: &mut Color)
fn visit_mut_color(&mut self, node: &mut Color)
Visit a node of type
Color
. Read more§fn visit_mut_color_profile_name(&mut self, node: &mut ColorProfileName)
fn visit_mut_color_profile_name(&mut self, node: &mut ColorProfileName)
Visit a node of type
ColorProfileName
. Read more§fn visit_mut_combinator(&mut self, node: &mut Combinator)
fn visit_mut_combinator(&mut self, node: &mut Combinator)
Visit a node of type
Combinator
. Read more§fn visit_mut_combinator_value(&mut self, node: &mut CombinatorValue)
fn visit_mut_combinator_value(&mut self, node: &mut CombinatorValue)
Visit a node of type
CombinatorValue
. Read more§fn visit_mut_complex_selector(&mut self, node: &mut ComplexSelector)
fn visit_mut_complex_selector(&mut self, node: &mut ComplexSelector)
Visit a node of type
ComplexSelector
. Read more§fn visit_mut_complex_selector_children(
&mut self,
node: &mut ComplexSelectorChildren,
)
fn visit_mut_complex_selector_children( &mut self, node: &mut ComplexSelectorChildren, )
Visit a node of type
ComplexSelectorChildren
. Read more§fn visit_mut_complex_selector_childrens(
&mut self,
node: &mut Vec<ComplexSelectorChildren>,
)
fn visit_mut_complex_selector_childrens( &mut self, node: &mut Vec<ComplexSelectorChildren>, )
Visit a node of type
Vec < ComplexSelectorChildren >
. Read more§fn visit_mut_complex_selectors(&mut self, node: &mut Vec<ComplexSelector>)
fn visit_mut_complex_selectors(&mut self, node: &mut Vec<ComplexSelector>)
Visit a node of type
Vec < ComplexSelector >
. Read more§fn visit_mut_component_value(&mut self, node: &mut ComponentValue)
fn visit_mut_component_value(&mut self, node: &mut ComponentValue)
Visit a node of type
ComponentValue
. Read more§fn visit_mut_component_values(&mut self, node: &mut Vec<ComponentValue>)
fn visit_mut_component_values(&mut self, node: &mut Vec<ComponentValue>)
Visit a node of type
Vec < ComponentValue >
. Read more§fn visit_mut_compound_selector(&mut self, node: &mut CompoundSelector)
fn visit_mut_compound_selector(&mut self, node: &mut CompoundSelector)
Visit a node of type
CompoundSelector
. Read more§fn visit_mut_compound_selector_list(&mut self, node: &mut CompoundSelectorList)
fn visit_mut_compound_selector_list(&mut self, node: &mut CompoundSelectorList)
Visit a node of type
CompoundSelectorList
. Read more§fn visit_mut_compound_selectors(&mut self, node: &mut Vec<CompoundSelector>)
fn visit_mut_compound_selectors(&mut self, node: &mut Vec<CompoundSelector>)
Visit a node of type
Vec < CompoundSelector >
. Read more§fn visit_mut_container_condition(&mut self, node: &mut ContainerCondition)
fn visit_mut_container_condition(&mut self, node: &mut ContainerCondition)
Visit a node of type
ContainerCondition
. Read more§fn visit_mut_container_name(&mut self, node: &mut ContainerName)
fn visit_mut_container_name(&mut self, node: &mut ContainerName)
Visit a node of type
ContainerName
. Read more§fn visit_mut_container_query(&mut self, node: &mut ContainerQuery)
fn visit_mut_container_query(&mut self, node: &mut ContainerQuery)
Visit a node of type
ContainerQuery
. Read more§fn visit_mut_container_query_and(&mut self, node: &mut ContainerQueryAnd)
fn visit_mut_container_query_and(&mut self, node: &mut ContainerQueryAnd)
Visit a node of type
ContainerQueryAnd
. Read more§fn visit_mut_container_query_not(&mut self, node: &mut ContainerQueryNot)
fn visit_mut_container_query_not(&mut self, node: &mut ContainerQueryNot)
Visit a node of type
ContainerQueryNot
. Read more§fn visit_mut_container_query_or(&mut self, node: &mut ContainerQueryOr)
fn visit_mut_container_query_or(&mut self, node: &mut ContainerQueryOr)
Visit a node of type
ContainerQueryOr
. Read more§fn visit_mut_container_query_type(&mut self, node: &mut ContainerQueryType)
fn visit_mut_container_query_type(&mut self, node: &mut ContainerQueryType)
Visit a node of type
ContainerQueryType
. Read more§fn visit_mut_container_query_types(
&mut self,
node: &mut Vec<ContainerQueryType>,
)
fn visit_mut_container_query_types( &mut self, node: &mut Vec<ContainerQueryType>, )
Visit a node of type
Vec < ContainerQueryType >
. Read more§fn visit_mut_custom_highlight_name(&mut self, node: &mut CustomHighlightName)
fn visit_mut_custom_highlight_name(&mut self, node: &mut CustomHighlightName)
Visit a node of type
CustomHighlightName
. Read more§fn visit_mut_custom_ident(&mut self, node: &mut CustomIdent)
fn visit_mut_custom_ident(&mut self, node: &mut CustomIdent)
Visit a node of type
CustomIdent
. Read more§fn visit_mut_custom_idents(&mut self, node: &mut Vec<CustomIdent>)
fn visit_mut_custom_idents(&mut self, node: &mut Vec<CustomIdent>)
Visit a node of type
Vec < CustomIdent >
. Read more§fn visit_mut_custom_media_query(&mut self, node: &mut CustomMediaQuery)
fn visit_mut_custom_media_query(&mut self, node: &mut CustomMediaQuery)
Visit a node of type
CustomMediaQuery
. Read more§fn visit_mut_custom_media_query_media_type(
&mut self,
node: &mut CustomMediaQueryMediaType,
)
fn visit_mut_custom_media_query_media_type( &mut self, node: &mut CustomMediaQueryMediaType, )
Visit a node of type
CustomMediaQueryMediaType
. Read more§fn visit_mut_custom_property_name(&mut self, node: &mut CustomPropertyName)
fn visit_mut_custom_property_name(&mut self, node: &mut CustomPropertyName)
Visit a node of type
CustomPropertyName
. Read more§fn visit_mut_dashed_ident(&mut self, node: &mut DashedIdent)
fn visit_mut_dashed_ident(&mut self, node: &mut DashedIdent)
Visit a node of type
DashedIdent
. Read more§fn visit_mut_declaration(&mut self, node: &mut Declaration)
fn visit_mut_declaration(&mut self, node: &mut Declaration)
Visit a node of type
Declaration
. Read more§fn visit_mut_declaration_name(&mut self, node: &mut DeclarationName)
fn visit_mut_declaration_name(&mut self, node: &mut DeclarationName)
Visit a node of type
DeclarationName
. Read more§fn visit_mut_declaration_or_at_rule(&mut self, node: &mut DeclarationOrAtRule)
fn visit_mut_declaration_or_at_rule(&mut self, node: &mut DeclarationOrAtRule)
Visit a node of type
DeclarationOrAtRule
. Read more§fn visit_mut_delimiter(&mut self, node: &mut Delimiter)
fn visit_mut_delimiter(&mut self, node: &mut Delimiter)
Visit a node of type
Delimiter
. Read more§fn visit_mut_delimiter_value(&mut self, node: &mut DelimiterValue)
fn visit_mut_delimiter_value(&mut self, node: &mut DelimiterValue)
Visit a node of type
DelimiterValue
. Read more§fn visit_mut_dimension(&mut self, node: &mut Dimension)
fn visit_mut_dimension(&mut self, node: &mut Dimension)
Visit a node of type
Dimension
. Read more§fn visit_mut_dimension_token(&mut self, node: &mut DimensionToken)
fn visit_mut_dimension_token(&mut self, node: &mut DimensionToken)
Visit a node of type
DimensionToken
. Read more§fn visit_mut_document_prelude(&mut self, node: &mut DocumentPrelude)
fn visit_mut_document_prelude(&mut self, node: &mut DocumentPrelude)
Visit a node of type
DocumentPrelude
. Read more§fn visit_mut_document_prelude_matching_function(
&mut self,
node: &mut DocumentPreludeMatchingFunction,
)
fn visit_mut_document_prelude_matching_function( &mut self, node: &mut DocumentPreludeMatchingFunction, )
Visit a node of type
DocumentPreludeMatchingFunction
. Read more§fn visit_mut_document_prelude_matching_functions(
&mut self,
node: &mut Vec<DocumentPreludeMatchingFunction>,
)
fn visit_mut_document_prelude_matching_functions( &mut self, node: &mut Vec<DocumentPreludeMatchingFunction>, )
Visit a node of type
Vec < DocumentPreludeMatchingFunction >
. Read more§fn visit_mut_extension_name(&mut self, node: &mut ExtensionName)
fn visit_mut_extension_name(&mut self, node: &mut ExtensionName)
Visit a node of type
ExtensionName
. Read more§fn visit_mut_family_name(&mut self, node: &mut FamilyName)
fn visit_mut_family_name(&mut self, node: &mut FamilyName)
Visit a node of type
FamilyName
. Read more§fn visit_mut_family_names(&mut self, node: &mut Vec<FamilyName>)
fn visit_mut_family_names(&mut self, node: &mut Vec<FamilyName>)
Visit a node of type
Vec < FamilyName >
. Read more§fn visit_mut_flex(&mut self, node: &mut Flex)
fn visit_mut_flex(&mut self, node: &mut Flex)
Visit a node of type
Flex
. Read more§fn visit_mut_font_feature_values_prelude(
&mut self,
node: &mut FontFeatureValuesPrelude,
)
fn visit_mut_font_feature_values_prelude( &mut self, node: &mut FontFeatureValuesPrelude, )
Visit a node of type
FontFeatureValuesPrelude
. Read more§fn visit_mut_forgiving_complex_selector(
&mut self,
node: &mut ForgivingComplexSelector,
)
fn visit_mut_forgiving_complex_selector( &mut self, node: &mut ForgivingComplexSelector, )
Visit a node of type
ForgivingComplexSelector
. Read more§fn visit_mut_forgiving_complex_selectors(
&mut self,
node: &mut Vec<ForgivingComplexSelector>,
)
fn visit_mut_forgiving_complex_selectors( &mut self, node: &mut Vec<ForgivingComplexSelector>, )
Visit a node of type
Vec < ForgivingComplexSelector >
. Read more§fn visit_mut_forgiving_relative_selector(
&mut self,
node: &mut ForgivingRelativeSelector,
)
fn visit_mut_forgiving_relative_selector( &mut self, node: &mut ForgivingRelativeSelector, )
Visit a node of type
ForgivingRelativeSelector
. Read more§fn visit_mut_forgiving_relative_selector_list(
&mut self,
node: &mut ForgivingRelativeSelectorList,
)
fn visit_mut_forgiving_relative_selector_list( &mut self, node: &mut ForgivingRelativeSelectorList, )
Visit a node of type
ForgivingRelativeSelectorList
. Read more§fn visit_mut_forgiving_relative_selectors(
&mut self,
node: &mut Vec<ForgivingRelativeSelector>,
)
fn visit_mut_forgiving_relative_selectors( &mut self, node: &mut Vec<ForgivingRelativeSelector>, )
Visit a node of type
Vec < ForgivingRelativeSelector >
. Read more§fn visit_mut_forgiving_selector_list(
&mut self,
node: &mut ForgivingSelectorList,
)
fn visit_mut_forgiving_selector_list( &mut self, node: &mut ForgivingSelectorList, )
Visit a node of type
ForgivingSelectorList
. Read more§fn visit_mut_frequency(&mut self, node: &mut Frequency)
fn visit_mut_frequency(&mut self, node: &mut Frequency)
Visit a node of type
Frequency
. Read more§fn visit_mut_frequency_percentage(&mut self, node: &mut FrequencyPercentage)
fn visit_mut_frequency_percentage(&mut self, node: &mut FrequencyPercentage)
Visit a node of type
FrequencyPercentage
. Read more§fn visit_mut_function(&mut self, node: &mut Function)
fn visit_mut_function(&mut self, node: &mut Function)
Visit a node of type
Function
. Read more§fn visit_mut_function_name(&mut self, node: &mut FunctionName)
fn visit_mut_function_name(&mut self, node: &mut FunctionName)
Visit a node of type
FunctionName
. Read more§fn visit_mut_general_enclosed(&mut self, node: &mut GeneralEnclosed)
fn visit_mut_general_enclosed(&mut self, node: &mut GeneralEnclosed)
Visit a node of type
GeneralEnclosed
. Read more§fn visit_mut_hex_color(&mut self, node: &mut HexColor)
fn visit_mut_hex_color(&mut self, node: &mut HexColor)
Visit a node of type
HexColor
. Read more§fn visit_mut_hue(&mut self, node: &mut Hue)
fn visit_mut_hue(&mut self, node: &mut Hue)
Visit a node of type
Hue
. Read more§fn visit_mut_id_selector(&mut self, node: &mut IdSelector)
fn visit_mut_id_selector(&mut self, node: &mut IdSelector)
Visit a node of type
IdSelector
. Read more§fn visit_mut_ident(&mut self, node: &mut Ident)
fn visit_mut_ident(&mut self, node: &mut Ident)
Visit a node of type
Ident
. Read more§fn visit_mut_idents(&mut self, node: &mut Vec<Ident>)
fn visit_mut_idents(&mut self, node: &mut Vec<Ident>)
Visit a node of type
Vec < Ident >
. Read more§fn visit_mut_import_conditions(&mut self, node: &mut ImportConditions)
fn visit_mut_import_conditions(&mut self, node: &mut ImportConditions)
Visit a node of type
ImportConditions
. Read more§fn visit_mut_import_href(&mut self, node: &mut ImportHref)
fn visit_mut_import_href(&mut self, node: &mut ImportHref)
Visit a node of type
ImportHref
. Read more§fn visit_mut_import_layer_name(&mut self, node: &mut ImportLayerName)
fn visit_mut_import_layer_name(&mut self, node: &mut ImportLayerName)
Visit a node of type
ImportLayerName
. Read more§fn visit_mut_import_prelude(&mut self, node: &mut ImportPrelude)
fn visit_mut_import_prelude(&mut self, node: &mut ImportPrelude)
Visit a node of type
ImportPrelude
. Read more§fn visit_mut_important_flag(&mut self, node: &mut ImportantFlag)
fn visit_mut_important_flag(&mut self, node: &mut ImportantFlag)
Visit a node of type
ImportantFlag
. Read more§fn visit_mut_integer(&mut self, node: &mut Integer)
fn visit_mut_integer(&mut self, node: &mut Integer)
Visit a node of type
Integer
. Read more§fn visit_mut_keyframe_block(&mut self, node: &mut KeyframeBlock)
fn visit_mut_keyframe_block(&mut self, node: &mut KeyframeBlock)
Visit a node of type
KeyframeBlock
. Read more§fn visit_mut_keyframe_selector(&mut self, node: &mut KeyframeSelector)
fn visit_mut_keyframe_selector(&mut self, node: &mut KeyframeSelector)
Visit a node of type
KeyframeSelector
. Read more§fn visit_mut_keyframe_selectors(&mut self, node: &mut Vec<KeyframeSelector>)
fn visit_mut_keyframe_selectors(&mut self, node: &mut Vec<KeyframeSelector>)
Visit a node of type
Vec < KeyframeSelector >
. Read more§fn visit_mut_keyframes_name(&mut self, node: &mut KeyframesName)
fn visit_mut_keyframes_name(&mut self, node: &mut KeyframesName)
Visit a node of type
KeyframesName
. Read more§fn visit_mut_keyframes_pseudo_function(
&mut self,
node: &mut KeyframesPseudoFunction,
)
fn visit_mut_keyframes_pseudo_function( &mut self, node: &mut KeyframesPseudoFunction, )
Visit a node of type
KeyframesPseudoFunction
. Read more§fn visit_mut_keyframes_pseudo_prefix(
&mut self,
node: &mut KeyframesPseudoPrefix,
)
fn visit_mut_keyframes_pseudo_prefix( &mut self, node: &mut KeyframesPseudoPrefix, )
Visit a node of type
KeyframesPseudoPrefix
. Read more§fn visit_mut_layer_name(&mut self, node: &mut LayerName)
fn visit_mut_layer_name(&mut self, node: &mut LayerName)
Visit a node of type
LayerName
. Read more§fn visit_mut_layer_name_list(&mut self, node: &mut LayerNameList)
fn visit_mut_layer_name_list(&mut self, node: &mut LayerNameList)
Visit a node of type
LayerNameList
. Read more§fn visit_mut_layer_names(&mut self, node: &mut Vec<LayerName>)
fn visit_mut_layer_names(&mut self, node: &mut Vec<LayerName>)
Visit a node of type
Vec < LayerName >
. Read more§fn visit_mut_layer_prelude(&mut self, node: &mut LayerPrelude)
fn visit_mut_layer_prelude(&mut self, node: &mut LayerPrelude)
Visit a node of type
LayerPrelude
. Read more§fn visit_mut_length(&mut self, node: &mut Length)
fn visit_mut_length(&mut self, node: &mut Length)
Visit a node of type
Length
. Read more§fn visit_mut_length_percentage(&mut self, node: &mut LengthPercentage)
fn visit_mut_length_percentage(&mut self, node: &mut LengthPercentage)
Visit a node of type
LengthPercentage
. Read more§fn visit_mut_list_of_component_values(
&mut self,
node: &mut ListOfComponentValues,
)
fn visit_mut_list_of_component_values( &mut self, node: &mut ListOfComponentValues, )
Visit a node of type
ListOfComponentValues
. Read more§fn visit_mut_media_and(&mut self, node: &mut MediaAnd)
fn visit_mut_media_and(&mut self, node: &mut MediaAnd)
Visit a node of type
MediaAnd
. Read more§fn visit_mut_media_condition(&mut self, node: &mut MediaCondition)
fn visit_mut_media_condition(&mut self, node: &mut MediaCondition)
Visit a node of type
MediaCondition
. Read more§fn visit_mut_media_condition_all_type(
&mut self,
node: &mut MediaConditionAllType,
)
fn visit_mut_media_condition_all_type( &mut self, node: &mut MediaConditionAllType, )
Visit a node of type
MediaConditionAllType
. Read more§fn visit_mut_media_condition_all_types(
&mut self,
node: &mut Vec<MediaConditionAllType>,
)
fn visit_mut_media_condition_all_types( &mut self, node: &mut Vec<MediaConditionAllType>, )
Visit a node of type
Vec < MediaConditionAllType >
. Read more§fn visit_mut_media_condition_type(&mut self, node: &mut MediaConditionType)
fn visit_mut_media_condition_type(&mut self, node: &mut MediaConditionType)
Visit a node of type
MediaConditionType
. Read more§fn visit_mut_media_condition_without_or(
&mut self,
node: &mut MediaConditionWithoutOr,
)
fn visit_mut_media_condition_without_or( &mut self, node: &mut MediaConditionWithoutOr, )
Visit a node of type
MediaConditionWithoutOr
. Read more§fn visit_mut_media_condition_without_or_type(
&mut self,
node: &mut MediaConditionWithoutOrType,
)
fn visit_mut_media_condition_without_or_type( &mut self, node: &mut MediaConditionWithoutOrType, )
Visit a node of type
MediaConditionWithoutOrType
. Read more§fn visit_mut_media_condition_without_or_types(
&mut self,
node: &mut Vec<MediaConditionWithoutOrType>,
)
fn visit_mut_media_condition_without_or_types( &mut self, node: &mut Vec<MediaConditionWithoutOrType>, )
Visit a node of type
Vec < MediaConditionWithoutOrType >
. Read more§fn visit_mut_media_feature(&mut self, node: &mut MediaFeature)
fn visit_mut_media_feature(&mut self, node: &mut MediaFeature)
Visit a node of type
MediaFeature
. Read more§fn visit_mut_media_feature_boolean(&mut self, node: &mut MediaFeatureBoolean)
fn visit_mut_media_feature_boolean(&mut self, node: &mut MediaFeatureBoolean)
Visit a node of type
MediaFeatureBoolean
. Read more§fn visit_mut_media_feature_name(&mut self, node: &mut MediaFeatureName)
fn visit_mut_media_feature_name(&mut self, node: &mut MediaFeatureName)
Visit a node of type
MediaFeatureName
. Read more§fn visit_mut_media_feature_plain(&mut self, node: &mut MediaFeaturePlain)
fn visit_mut_media_feature_plain(&mut self, node: &mut MediaFeaturePlain)
Visit a node of type
MediaFeaturePlain
. Read more§fn visit_mut_media_feature_range(&mut self, node: &mut MediaFeatureRange)
fn visit_mut_media_feature_range(&mut self, node: &mut MediaFeatureRange)
Visit a node of type
MediaFeatureRange
. Read more§fn visit_mut_media_feature_range_comparison(
&mut self,
node: &mut MediaFeatureRangeComparison,
)
fn visit_mut_media_feature_range_comparison( &mut self, node: &mut MediaFeatureRangeComparison, )
Visit a node of type
MediaFeatureRangeComparison
. Read more§fn visit_mut_media_feature_range_interval(
&mut self,
node: &mut MediaFeatureRangeInterval,
)
fn visit_mut_media_feature_range_interval( &mut self, node: &mut MediaFeatureRangeInterval, )
Visit a node of type
MediaFeatureRangeInterval
. Read more§fn visit_mut_media_feature_value(&mut self, node: &mut MediaFeatureValue)
fn visit_mut_media_feature_value(&mut self, node: &mut MediaFeatureValue)
Visit a node of type
MediaFeatureValue
. Read more§fn visit_mut_media_in_parens(&mut self, node: &mut MediaInParens)
fn visit_mut_media_in_parens(&mut self, node: &mut MediaInParens)
Visit a node of type
MediaInParens
. Read more§fn visit_mut_media_not(&mut self, node: &mut MediaNot)
fn visit_mut_media_not(&mut self, node: &mut MediaNot)
Visit a node of type
MediaNot
. Read more§fn visit_mut_media_or(&mut self, node: &mut MediaOr)
fn visit_mut_media_or(&mut self, node: &mut MediaOr)
Visit a node of type
MediaOr
. Read more§fn visit_mut_media_query(&mut self, node: &mut MediaQuery)
fn visit_mut_media_query(&mut self, node: &mut MediaQuery)
Visit a node of type
MediaQuery
. Read more§fn visit_mut_media_query_list(&mut self, node: &mut MediaQueryList)
fn visit_mut_media_query_list(&mut self, node: &mut MediaQueryList)
Visit a node of type
MediaQueryList
. Read more§fn visit_mut_media_querys(&mut self, node: &mut Vec<MediaQuery>)
fn visit_mut_media_querys(&mut self, node: &mut Vec<MediaQuery>)
Visit a node of type
Vec < MediaQuery >
. Read more§fn visit_mut_media_type(&mut self, node: &mut MediaType)
fn visit_mut_media_type(&mut self, node: &mut MediaType)
Visit a node of type
MediaType
. Read more§fn visit_mut_named_namespace(&mut self, node: &mut NamedNamespace)
fn visit_mut_named_namespace(&mut self, node: &mut NamedNamespace)
Visit a node of type
NamedNamespace
. Read more§fn visit_mut_namespace(&mut self, node: &mut Namespace)
fn visit_mut_namespace(&mut self, node: &mut Namespace)
Visit a node of type
Namespace
. Read more§fn visit_mut_namespace_prefix(&mut self, node: &mut NamespacePrefix)
fn visit_mut_namespace_prefix(&mut self, node: &mut NamespacePrefix)
Visit a node of type
NamespacePrefix
. Read more§fn visit_mut_namespace_prelude(&mut self, node: &mut NamespacePrelude)
fn visit_mut_namespace_prelude(&mut self, node: &mut NamespacePrelude)
Visit a node of type
NamespacePrelude
. Read more§fn visit_mut_namespace_prelude_uri(&mut self, node: &mut NamespacePreludeUri)
fn visit_mut_namespace_prelude_uri(&mut self, node: &mut NamespacePreludeUri)
Visit a node of type
NamespacePreludeUri
. Read more§fn visit_mut_nesting_selector(&mut self, node: &mut NestingSelector)
fn visit_mut_nesting_selector(&mut self, node: &mut NestingSelector)
Visit a node of type
NestingSelector
. Read more§fn visit_mut_number(&mut self, node: &mut Number)
fn visit_mut_number(&mut self, node: &mut Number)
Visit a node of type
Number
. Read more§fn visit_mut_number_type(&mut self, node: &mut NumberType)
fn visit_mut_number_type(&mut self, node: &mut NumberType)
Visit a node of type
NumberType
. Read more§fn visit_mut_opt_at_rule_prelude(
&mut self,
node: &mut Option<Box<AtRulePrelude>>,
)
fn visit_mut_opt_at_rule_prelude( &mut self, node: &mut Option<Box<AtRulePrelude>>, )
Visit a node of type
Option < Box < AtRulePrelude > >
. Read more§fn visit_mut_opt_atom(&mut self, node: &mut Option<Atom>)
fn visit_mut_opt_atom(&mut self, node: &mut Option<Atom>)
Visit a node of type
Option < swc_atoms :: Atom >
. Read more§fn visit_mut_opt_attribute_selector_matcher(
&mut self,
node: &mut Option<AttributeSelectorMatcher>,
)
fn visit_mut_opt_attribute_selector_matcher( &mut self, node: &mut Option<AttributeSelectorMatcher>, )
Visit a node of type
Option < AttributeSelectorMatcher >
. Read more§fn visit_mut_opt_attribute_selector_modifier(
&mut self,
node: &mut Option<AttributeSelectorModifier>,
)
fn visit_mut_opt_attribute_selector_modifier( &mut self, node: &mut Option<AttributeSelectorModifier>, )
Visit a node of type
Option < AttributeSelectorModifier >
. Read more§fn visit_mut_opt_attribute_selector_value(
&mut self,
node: &mut Option<AttributeSelectorValue>,
)
fn visit_mut_opt_attribute_selector_value( &mut self, node: &mut Option<AttributeSelectorValue>, )
Visit a node of type
Option < AttributeSelectorValue >
. Read more§fn visit_mut_opt_combinator(&mut self, node: &mut Option<Combinator>)
fn visit_mut_opt_combinator(&mut self, node: &mut Option<Combinator>)
Visit a node of type
Option < Combinator >
. Read more§fn visit_mut_opt_container_name(&mut self, node: &mut Option<ContainerName>)
fn visit_mut_opt_container_name(&mut self, node: &mut Option<ContainerName>)
Visit a node of type
Option < ContainerName >
. Read more§fn visit_mut_opt_forgiving_selector_list(
&mut self,
node: &mut Option<ForgivingSelectorList>,
)
fn visit_mut_opt_forgiving_selector_list( &mut self, node: &mut Option<ForgivingSelectorList>, )
Visit a node of type
Option < ForgivingSelectorList >
. Read more§fn visit_mut_opt_function(&mut self, node: &mut Option<Box<Function>>)
fn visit_mut_opt_function(&mut self, node: &mut Option<Box<Function>>)
Visit a node of type
Option < Box < Function > >
. Read more§fn visit_mut_opt_ident(&mut self, node: &mut Option<Ident>)
fn visit_mut_opt_ident(&mut self, node: &mut Option<Ident>)
Visit a node of type
Option < Ident >
. Read more§fn visit_mut_opt_import_conditions(
&mut self,
node: &mut Option<Box<ImportConditions>>,
)
fn visit_mut_opt_import_conditions( &mut self, node: &mut Option<Box<ImportConditions>>, )
Visit a node of type
Option < Box < ImportConditions > >
. Read more§fn visit_mut_opt_import_layer_name(
&mut self,
node: &mut Option<Box<ImportLayerName>>,
)
fn visit_mut_opt_import_layer_name( &mut self, node: &mut Option<Box<ImportLayerName>>, )
Visit a node of type
Option < Box < ImportLayerName > >
. Read more§fn visit_mut_opt_important_flag(&mut self, node: &mut Option<ImportantFlag>)
fn visit_mut_opt_important_flag(&mut self, node: &mut Option<ImportantFlag>)
Visit a node of type
Option < ImportantFlag >
. Read more§fn visit_mut_opt_media_condition_type(
&mut self,
node: &mut Option<Box<MediaConditionType>>,
)
fn visit_mut_opt_media_condition_type( &mut self, node: &mut Option<Box<MediaConditionType>>, )
Visit a node of type
Option < Box < MediaConditionType > >
. Read more§fn visit_mut_opt_media_query_list(
&mut self,
node: &mut Option<Box<MediaQueryList>>,
)
fn visit_mut_opt_media_query_list( &mut self, node: &mut Option<Box<MediaQueryList>>, )
Visit a node of type
Option < Box < MediaQueryList > >
. Read more§fn visit_mut_opt_media_type(&mut self, node: &mut Option<MediaType>)
fn visit_mut_opt_media_type(&mut self, node: &mut Option<MediaType>)
Visit a node of type
Option < MediaType >
. Read more§fn visit_mut_opt_namespace(&mut self, node: &mut Option<Namespace>)
fn visit_mut_opt_namespace(&mut self, node: &mut Option<Namespace>)
Visit a node of type
Option < Namespace >
. Read more§fn visit_mut_opt_namespace_prefix(&mut self, node: &mut Option<NamespacePrefix>)
fn visit_mut_opt_namespace_prefix(&mut self, node: &mut Option<NamespacePrefix>)
Visit a node of type
Option < NamespacePrefix >
. Read more§fn visit_mut_opt_nesting_selector(&mut self, node: &mut Option<NestingSelector>)
fn visit_mut_opt_nesting_selector(&mut self, node: &mut Option<NestingSelector>)
Visit a node of type
Option < NestingSelector >
. Read more§fn visit_mut_opt_number(&mut self, node: &mut Option<Number>)
fn visit_mut_opt_number(&mut self, node: &mut Option<Number>)
Visit a node of type
Option < Number >
. Read more§fn visit_mut_opt_page_selector_pseudos(
&mut self,
node: &mut Option<Vec<PageSelectorPseudo>>,
)
fn visit_mut_opt_page_selector_pseudos( &mut self, node: &mut Option<Vec<PageSelectorPseudo>>, )
Visit a node of type
Option < Vec < PageSelectorPseudo > >
. Read more§fn visit_mut_opt_page_selector_type(
&mut self,
node: &mut Option<PageSelectorType>,
)
fn visit_mut_opt_page_selector_type( &mut self, node: &mut Option<PageSelectorType>, )
Visit a node of type
Option < PageSelectorType >
. Read more§fn visit_mut_opt_pseudo_class_selector_childrens(
&mut self,
node: &mut Option<Vec<PseudoClassSelectorChildren>>,
)
fn visit_mut_opt_pseudo_class_selector_childrens( &mut self, node: &mut Option<Vec<PseudoClassSelectorChildren>>, )
Visit a node of type
Option < Vec < PseudoClassSelectorChildren > >
. Read more§fn visit_mut_opt_pseudo_element_selector_childrens(
&mut self,
node: &mut Option<Vec<PseudoElementSelectorChildren>>,
)
fn visit_mut_opt_pseudo_element_selector_childrens( &mut self, node: &mut Option<Vec<PseudoElementSelectorChildren>>, )
Visit a node of type
Option < Vec < PseudoElementSelectorChildren > >
. Read more§fn visit_mut_opt_simple_block(&mut self, node: &mut Option<SimpleBlock>)
fn visit_mut_opt_simple_block(&mut self, node: &mut Option<SimpleBlock>)
Visit a node of type
Option < SimpleBlock >
. Read more§fn visit_mut_opt_type_selector(&mut self, node: &mut Option<Box<TypeSelector>>)
fn visit_mut_opt_type_selector(&mut self, node: &mut Option<Box<TypeSelector>>)
Visit a node of type
Option < Box < TypeSelector > >
. Read more§fn visit_mut_opt_url_modifiers(&mut self, node: &mut Option<Vec<UrlModifier>>)
fn visit_mut_opt_url_modifiers(&mut self, node: &mut Option<Vec<UrlModifier>>)
Visit a node of type
Option < Vec < UrlModifier > >
. Read more§fn visit_mut_opt_url_value(&mut self, node: &mut Option<Box<UrlValue>>)
fn visit_mut_opt_url_value(&mut self, node: &mut Option<Box<UrlValue>>)
Visit a node of type
Option < Box < UrlValue > >
. Read more§fn visit_mut_page_selector(&mut self, node: &mut PageSelector)
fn visit_mut_page_selector(&mut self, node: &mut PageSelector)
Visit a node of type
PageSelector
. Read more§fn visit_mut_page_selector_list(&mut self, node: &mut PageSelectorList)
fn visit_mut_page_selector_list(&mut self, node: &mut PageSelectorList)
Visit a node of type
PageSelectorList
. Read more§fn visit_mut_page_selector_pseudo(&mut self, node: &mut PageSelectorPseudo)
fn visit_mut_page_selector_pseudo(&mut self, node: &mut PageSelectorPseudo)
Visit a node of type
PageSelectorPseudo
. Read more§fn visit_mut_page_selector_pseudos(
&mut self,
node: &mut Vec<PageSelectorPseudo>,
)
fn visit_mut_page_selector_pseudos( &mut self, node: &mut Vec<PageSelectorPseudo>, )
Visit a node of type
Vec < PageSelectorPseudo >
. Read more§fn visit_mut_page_selector_type(&mut self, node: &mut PageSelectorType)
fn visit_mut_page_selector_type(&mut self, node: &mut PageSelectorType)
Visit a node of type
PageSelectorType
. Read more§fn visit_mut_page_selectors(&mut self, node: &mut Vec<PageSelector>)
fn visit_mut_page_selectors(&mut self, node: &mut Vec<PageSelector>)
Visit a node of type
Vec < PageSelector >
. Read more§fn visit_mut_percentage(&mut self, node: &mut Percentage)
fn visit_mut_percentage(&mut self, node: &mut Percentage)
Visit a node of type
Percentage
. Read more§fn visit_mut_pseudo_class_selector(&mut self, node: &mut PseudoClassSelector)
fn visit_mut_pseudo_class_selector(&mut self, node: &mut PseudoClassSelector)
Visit a node of type
PseudoClassSelector
. Read more§fn visit_mut_pseudo_class_selector_children(
&mut self,
node: &mut PseudoClassSelectorChildren,
)
fn visit_mut_pseudo_class_selector_children( &mut self, node: &mut PseudoClassSelectorChildren, )
Visit a node of type
PseudoClassSelectorChildren
. Read more§fn visit_mut_pseudo_class_selector_childrens(
&mut self,
node: &mut Vec<PseudoClassSelectorChildren>,
)
fn visit_mut_pseudo_class_selector_childrens( &mut self, node: &mut Vec<PseudoClassSelectorChildren>, )
Visit a node of type
Vec < PseudoClassSelectorChildren >
. Read more§fn visit_mut_pseudo_element_selector(
&mut self,
node: &mut PseudoElementSelector,
)
fn visit_mut_pseudo_element_selector( &mut self, node: &mut PseudoElementSelector, )
Visit a node of type
PseudoElementSelector
. Read more§fn visit_mut_pseudo_element_selector_children(
&mut self,
node: &mut PseudoElementSelectorChildren,
)
fn visit_mut_pseudo_element_selector_children( &mut self, node: &mut PseudoElementSelectorChildren, )
Visit a node of type
PseudoElementSelectorChildren
. Read more§fn visit_mut_pseudo_element_selector_childrens(
&mut self,
node: &mut Vec<PseudoElementSelectorChildren>,
)
fn visit_mut_pseudo_element_selector_childrens( &mut self, node: &mut Vec<PseudoElementSelectorChildren>, )
Visit a node of type
Vec < PseudoElementSelectorChildren >
. Read more§fn visit_mut_qualified_rule(&mut self, node: &mut QualifiedRule)
fn visit_mut_qualified_rule(&mut self, node: &mut QualifiedRule)
Visit a node of type
QualifiedRule
. Read more§fn visit_mut_qualified_rule_prelude(&mut self, node: &mut QualifiedRulePrelude)
fn visit_mut_qualified_rule_prelude(&mut self, node: &mut QualifiedRulePrelude)
Visit a node of type
QualifiedRulePrelude
. Read more§fn visit_mut_query_in_parens(&mut self, node: &mut QueryInParens)
fn visit_mut_query_in_parens(&mut self, node: &mut QueryInParens)
Visit a node of type
QueryInParens
. Read more§fn visit_mut_ratio(&mut self, node: &mut Ratio)
fn visit_mut_ratio(&mut self, node: &mut Ratio)
Visit a node of type
Ratio
. Read more§fn visit_mut_relative_selector(&mut self, node: &mut RelativeSelector)
fn visit_mut_relative_selector(&mut self, node: &mut RelativeSelector)
Visit a node of type
RelativeSelector
. Read more§fn visit_mut_relative_selector_list(&mut self, node: &mut RelativeSelectorList)
fn visit_mut_relative_selector_list(&mut self, node: &mut RelativeSelectorList)
Visit a node of type
RelativeSelectorList
. Read more§fn visit_mut_relative_selectors(&mut self, node: &mut Vec<RelativeSelector>)
fn visit_mut_relative_selectors(&mut self, node: &mut Vec<RelativeSelector>)
Visit a node of type
Vec < RelativeSelector >
. Read more§fn visit_mut_resolution(&mut self, node: &mut Resolution)
fn visit_mut_resolution(&mut self, node: &mut Resolution)
Visit a node of type
Resolution
. Read more§fn visit_mut_rule(&mut self, node: &mut Rule)
fn visit_mut_rule(&mut self, node: &mut Rule)
Visit a node of type
Rule
. Read more§fn visit_mut_rules(&mut self, node: &mut Vec<Rule>)
fn visit_mut_rules(&mut self, node: &mut Vec<Rule>)
Visit a node of type
Vec < Rule >
. Read more§fn visit_mut_scope_range(&mut self, node: &mut ScopeRange)
fn visit_mut_scope_range(&mut self, node: &mut ScopeRange)
Visit a node of type
ScopeRange
. Read more§fn visit_mut_selector_list(&mut self, node: &mut SelectorList)
fn visit_mut_selector_list(&mut self, node: &mut SelectorList)
Visit a node of type
SelectorList
. Read more§fn visit_mut_sequence_of_custom_idents(
&mut self,
node: &mut SequenceOfCustomIdents,
)
fn visit_mut_sequence_of_custom_idents( &mut self, node: &mut SequenceOfCustomIdents, )
Visit a node of type
SequenceOfCustomIdents
. Read more§fn visit_mut_simple_block(&mut self, node: &mut SimpleBlock)
fn visit_mut_simple_block(&mut self, node: &mut SimpleBlock)
Visit a node of type
SimpleBlock
. Read more§fn visit_mut_size_feature(&mut self, node: &mut SizeFeature)
fn visit_mut_size_feature(&mut self, node: &mut SizeFeature)
Visit a node of type
SizeFeature
. Read more§fn visit_mut_size_feature_boolean(&mut self, node: &mut SizeFeatureBoolean)
fn visit_mut_size_feature_boolean(&mut self, node: &mut SizeFeatureBoolean)
Visit a node of type
SizeFeatureBoolean
. Read more§fn visit_mut_size_feature_name(&mut self, node: &mut SizeFeatureName)
fn visit_mut_size_feature_name(&mut self, node: &mut SizeFeatureName)
Visit a node of type
SizeFeatureName
. Read more§fn visit_mut_size_feature_plain(&mut self, node: &mut SizeFeaturePlain)
fn visit_mut_size_feature_plain(&mut self, node: &mut SizeFeaturePlain)
Visit a node of type
SizeFeaturePlain
. Read more§fn visit_mut_size_feature_range(&mut self, node: &mut SizeFeatureRange)
fn visit_mut_size_feature_range(&mut self, node: &mut SizeFeatureRange)
Visit a node of type
SizeFeatureRange
. Read more§fn visit_mut_size_feature_range_comparison(
&mut self,
node: &mut SizeFeatureRangeComparison,
)
fn visit_mut_size_feature_range_comparison( &mut self, node: &mut SizeFeatureRangeComparison, )
Visit a node of type
SizeFeatureRangeComparison
. Read more§fn visit_mut_size_feature_range_interval(
&mut self,
node: &mut SizeFeatureRangeInterval,
)
fn visit_mut_size_feature_range_interval( &mut self, node: &mut SizeFeatureRangeInterval, )
Visit a node of type
SizeFeatureRangeInterval
. Read more§fn visit_mut_size_feature_value(&mut self, node: &mut SizeFeatureValue)
fn visit_mut_size_feature_value(&mut self, node: &mut SizeFeatureValue)
Visit a node of type
SizeFeatureValue
. Read more§fn visit_mut_span(&mut self, node: &mut Span)
fn visit_mut_span(&mut self, node: &mut Span)
Visit a node of type
swc_common :: Span
. Read more§fn visit_mut_str(&mut self, node: &mut Str)
fn visit_mut_str(&mut self, node: &mut Str)
Visit a node of type
Str
. Read more§fn visit_mut_style_block(&mut self, node: &mut StyleBlock)
fn visit_mut_style_block(&mut self, node: &mut StyleBlock)
Visit a node of type
StyleBlock
. Read more§fn visit_mut_stylesheet(&mut self, node: &mut Stylesheet)
fn visit_mut_stylesheet(&mut self, node: &mut Stylesheet)
Visit a node of type
Stylesheet
. Read more§fn visit_mut_subclass_selector(&mut self, node: &mut SubclassSelector)
fn visit_mut_subclass_selector(&mut self, node: &mut SubclassSelector)
Visit a node of type
SubclassSelector
. Read more§fn visit_mut_subclass_selectors(&mut self, node: &mut Vec<SubclassSelector>)
fn visit_mut_subclass_selectors(&mut self, node: &mut Vec<SubclassSelector>)
Visit a node of type
Vec < SubclassSelector >
. Read more§fn visit_mut_supports_and(&mut self, node: &mut SupportsAnd)
fn visit_mut_supports_and(&mut self, node: &mut SupportsAnd)
Visit a node of type
SupportsAnd
. Read more§fn visit_mut_supports_condition(&mut self, node: &mut SupportsCondition)
fn visit_mut_supports_condition(&mut self, node: &mut SupportsCondition)
Visit a node of type
SupportsCondition
. Read more§fn visit_mut_supports_condition_type(
&mut self,
node: &mut SupportsConditionType,
)
fn visit_mut_supports_condition_type( &mut self, node: &mut SupportsConditionType, )
Visit a node of type
SupportsConditionType
. Read more§fn visit_mut_supports_condition_types(
&mut self,
node: &mut Vec<SupportsConditionType>,
)
fn visit_mut_supports_condition_types( &mut self, node: &mut Vec<SupportsConditionType>, )
Visit a node of type
Vec < SupportsConditionType >
. Read more§fn visit_mut_supports_feature(&mut self, node: &mut SupportsFeature)
fn visit_mut_supports_feature(&mut self, node: &mut SupportsFeature)
Visit a node of type
SupportsFeature
. Read more§fn visit_mut_supports_in_parens(&mut self, node: &mut SupportsInParens)
fn visit_mut_supports_in_parens(&mut self, node: &mut SupportsInParens)
Visit a node of type
SupportsInParens
. Read more§fn visit_mut_supports_not(&mut self, node: &mut SupportsNot)
fn visit_mut_supports_not(&mut self, node: &mut SupportsNot)
Visit a node of type
SupportsNot
. Read more§fn visit_mut_supports_or(&mut self, node: &mut SupportsOr)
fn visit_mut_supports_or(&mut self, node: &mut SupportsOr)
Visit a node of type
SupportsOr
. Read more§fn visit_mut_tag_name_selector(&mut self, node: &mut TagNameSelector)
fn visit_mut_tag_name_selector(&mut self, node: &mut TagNameSelector)
Visit a node of type
TagNameSelector
. Read more§fn visit_mut_time(&mut self, node: &mut Time)
fn visit_mut_time(&mut self, node: &mut Time)
Visit a node of type
Time
. Read more§fn visit_mut_time_percentage(&mut self, node: &mut TimePercentage)
fn visit_mut_time_percentage(&mut self, node: &mut TimePercentage)
Visit a node of type
TimePercentage
. Read more§fn visit_mut_token(&mut self, node: &mut Token)
fn visit_mut_token(&mut self, node: &mut Token)
Visit a node of type
Token
. Read more§fn visit_mut_token_and_span(&mut self, node: &mut TokenAndSpan)
fn visit_mut_token_and_span(&mut self, node: &mut TokenAndSpan)
Visit a node of type
TokenAndSpan
. Read more§fn visit_mut_type_selector(&mut self, node: &mut TypeSelector)
fn visit_mut_type_selector(&mut self, node: &mut TypeSelector)
Visit a node of type
TypeSelector
. Read more§fn visit_mut_unicode_range(&mut self, node: &mut UnicodeRange)
fn visit_mut_unicode_range(&mut self, node: &mut UnicodeRange)
Visit a node of type
UnicodeRange
. Read more§fn visit_mut_universal_selector(&mut self, node: &mut UniversalSelector)
fn visit_mut_universal_selector(&mut self, node: &mut UniversalSelector)
Visit a node of type
UniversalSelector
. Read more§fn visit_mut_unknown_dimension(&mut self, node: &mut UnknownDimension)
fn visit_mut_unknown_dimension(&mut self, node: &mut UnknownDimension)
Visit a node of type
UnknownDimension
. Read more§fn visit_mut_url(&mut self, node: &mut Url)
fn visit_mut_url(&mut self, node: &mut Url)
Visit a node of type
Url
. Read more§fn visit_mut_url_key_value(&mut self, node: &mut UrlKeyValue)
fn visit_mut_url_key_value(&mut self, node: &mut UrlKeyValue)
Visit a node of type
UrlKeyValue
. Read more§fn visit_mut_url_modifier(&mut self, node: &mut UrlModifier)
fn visit_mut_url_modifier(&mut self, node: &mut UrlModifier)
Visit a node of type
UrlModifier
. Read more§fn visit_mut_url_modifiers(&mut self, node: &mut Vec<UrlModifier>)
fn visit_mut_url_modifiers(&mut self, node: &mut Vec<UrlModifier>)
Visit a node of type
Vec < UrlModifier >
. Read more§fn visit_mut_url_value(&mut self, node: &mut UrlValue)
fn visit_mut_url_value(&mut self, node: &mut UrlValue)
Visit a node of type
UrlValue
. Read more§fn visit_mut_url_value_raw(&mut self, node: &mut UrlValueRaw)
fn visit_mut_url_value_raw(&mut self, node: &mut UrlValueRaw)
Visit a node of type
UrlValueRaw
. Read more§fn visit_mut_wq_name(&mut self, node: &mut WqName)
fn visit_mut_wq_name(&mut self, node: &mut WqName)
Visit a node of type
WqName
. Read moreimpl<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§
§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
)§impl<T> Conv for T
impl<T> Conv for T
§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
§fn deserialize(
&self,
deserializer: &mut D,
) -> Result<With<T, W>, <D as Fallible>::Error>
fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>
Deserializes using the given deserializer
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
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.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
Formats each item in a sequence. Read more
source§impl<T> ImplicitClone for Twhere
T: Clone,
impl<T> ImplicitClone for Twhere
T: Clone,
source§fn clone_quote_var(&self) -> Self
fn clone_quote_var(&self) -> Self
Available on crate feature
ecma_quote
only.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.
§impl<D> OwoColorize for D
impl<D> OwoColorize for D
§fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>where
C: Color,
fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>where
C: Color,
Set the foreground color generically Read more
§fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>where
C: Color,
fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>where
C: Color,
Set the background color generically. Read more
§fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>
fn on_magenta(&self) -> BgColorDisplay<'_, Magenta, Self>
Change the background color to magenta
§fn default_color(&self) -> FgColorDisplay<'_, Default, Self>
fn default_color(&self) -> FgColorDisplay<'_, Default, Self>
Change the foreground color to the terminal default
§fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>
fn on_default_color(&self) -> BgColorDisplay<'_, Default, Self>
Change the background color to the terminal default
§fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>
fn bright_black(&self) -> FgColorDisplay<'_, BrightBlack, Self>
Change the foreground color to bright black
§fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>
fn on_bright_black(&self) -> BgColorDisplay<'_, BrightBlack, Self>
Change the background color to bright black
§fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>
fn bright_red(&self) -> FgColorDisplay<'_, BrightRed, Self>
Change the foreground color to bright red
§fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>
fn on_bright_red(&self) -> BgColorDisplay<'_, BrightRed, Self>
Change the background color to bright red
§fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>
fn bright_green(&self) -> FgColorDisplay<'_, BrightGreen, Self>
Change the foreground color to bright green
§fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>
fn on_bright_green(&self) -> BgColorDisplay<'_, BrightGreen, Self>
Change the background color to bright green
§fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>
fn bright_yellow(&self) -> FgColorDisplay<'_, BrightYellow, Self>
Change the foreground color to bright yellow
§fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>
fn on_bright_yellow(&self) -> BgColorDisplay<'_, BrightYellow, Self>
Change the background color to bright yellow
§fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>
fn bright_blue(&self) -> FgColorDisplay<'_, BrightBlue, Self>
Change the foreground color to bright blue
§fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>
fn on_bright_blue(&self) -> BgColorDisplay<'_, BrightBlue, Self>
Change the background color to bright blue
§fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
fn bright_magenta(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
Change the foreground color to bright magenta
§fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
fn on_bright_magenta(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
Change the background color to bright magenta
§fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
fn bright_purple(&self) -> FgColorDisplay<'_, BrightMagenta, Self>
Change the foreground color to bright purple
§fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
fn on_bright_purple(&self) -> BgColorDisplay<'_, BrightMagenta, Self>
Change the background color to bright purple
§fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>
fn bright_cyan(&self) -> FgColorDisplay<'_, BrightCyan, Self>
Change the foreground color to bright cyan
§fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>
fn on_bright_cyan(&self) -> BgColorDisplay<'_, BrightCyan, Self>
Change the background color to bright cyan
§fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>
fn bright_white(&self) -> FgColorDisplay<'_, BrightWhite, Self>
Change the foreground color to bright white
§fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>
fn on_bright_white(&self) -> BgColorDisplay<'_, BrightWhite, Self>
Change the background color to bright white
§fn blink_fast(&self) -> BlinkFastDisplay<'_, Self>
fn blink_fast(&self) -> BlinkFastDisplay<'_, Self>
Make the text blink (but fast!)
Hide the text
§fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>
fn strikethrough(&self) -> StrikeThroughDisplay<'_, Self>
Cross out the text
§fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
Set the foreground color at runtime. Only use if you do not know which color will be used at
compile-time. If the color is constant, use either
OwoColorize::fg
or
a color-specific method, such as OwoColorize::green
, Read more§fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>where
Color: DynColor,
Set the background color at runtime. Only use if you do not know what color to use at
compile-time. If the color is constant, use either
OwoColorize::bg
or
a color-specific method, such as OwoColorize::on_yellow
, Read more§fn fg_rgb<const R: u8, const G: u8, const B: u8>(
&self,
) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>
fn fg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>
Set the foreground color to a specific RGB value.
§fn bg_rgb<const R: u8, const G: u8, const B: u8>(
&self,
) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>
fn bg_rgb<const R: u8, const G: u8, const B: u8>( &self, ) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>
Set the background color to a specific RGB value.
§fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>
fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>
Sets the foreground color to an RGB value.
§fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>
fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>
Sets the background color to an RGB value.
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.