Enum swc_ecma_ast::Stmt[][src]

pub enum Stmt {
Show 19 variants Block(BlockStmt), Empty(EmptyStmt), Debugger(DebuggerStmt), With(WithStmt), Return(ReturnStmt), Labeled(LabeledStmt), Break(BreakStmt), Continue(ContinueStmt), If(IfStmt), Switch(SwitchStmt), Throw(ThrowStmt), Try(TryStmt), While(WhileStmt), DoWhile(DoWhileStmt), For(ForStmt), ForIn(ForInStmt), ForOf(ForOfStmt), Decl(Decl), Expr(ExprStmt),
}

Variants

Block(BlockStmt)

Tuple Fields of Block

0: BlockStmt
Empty(EmptyStmt)

Tuple Fields of Empty

0: EmptyStmt
Debugger(DebuggerStmt)

Tuple Fields of Debugger

0: DebuggerStmt
With(WithStmt)

Tuple Fields of With

0: WithStmt
Return(ReturnStmt)

Tuple Fields of Return

0: ReturnStmt
Labeled(LabeledStmt)

Tuple Fields of Labeled

0: LabeledStmt
Break(BreakStmt)

Tuple Fields of Break

0: BreakStmt
Continue(ContinueStmt)

Tuple Fields of Continue

0: ContinueStmt
If(IfStmt)

Tuple Fields of If

0: IfStmt
Switch(SwitchStmt)

Tuple Fields of Switch

0: SwitchStmt
Throw(ThrowStmt)

Tuple Fields of Throw

0: ThrowStmt
Try(TryStmt)

A try statement. If handler is null then finalizer must be a BlockStmt.

Tuple Fields of Try

0: TryStmt
While(WhileStmt)

Tuple Fields of While

0: WhileStmt
DoWhile(DoWhileStmt)

Tuple Fields of DoWhile

0: DoWhileStmt
For(ForStmt)

Tuple Fields of For

0: ForStmt
ForIn(ForInStmt)

Tuple Fields of ForIn

0: ForInStmt
ForOf(ForOfStmt)

Tuple Fields of ForOf

0: ForOfStmt
Decl(Decl)

Tuple Fields of Decl

0: Decl
Expr(ExprStmt)

Tuple Fields of Expr

0: ExprStmt

Implementations

Returns true if self is of variant Block.

Unwraps the value, yielding the content of Block.

Panics

Panics if the value is not Block, with a panic message including the content of self.

Returns Some if self is of variant Block, and None otherwise.

Returns true if self is of variant Empty.

Unwraps the value, yielding the content of Empty.

Panics

Panics if the value is not Empty, with a panic message including the content of self.

Returns Some if self is of variant Empty, and None otherwise.

Returns true if self is of variant Debugger.

Unwraps the value, yielding the content of Debugger.

Panics

Panics if the value is not Debugger, with a panic message including the content of self.

Returns Some if self is of variant Debugger, and None otherwise.

Returns true if self is of variant With.

Unwraps the value, yielding the content of With.

Panics

Panics if the value is not With, with a panic message including the content of self.

Returns Some if self is of variant With, and None otherwise.

Returns true if self is of variant Return.

Unwraps the value, yielding the content of Return.

Panics

Panics if the value is not Return, with a panic message including the content of self.

Returns Some if self is of variant Return, and None otherwise.

Returns true if self is of variant Labeled.

Unwraps the value, yielding the content of Labeled.

Panics

Panics if the value is not Labeled, with a panic message including the content of self.

Returns Some if self is of variant Labeled, and None otherwise.

Returns true if self is of variant Break.

Unwraps the value, yielding the content of Break.

Panics

Panics if the value is not Break, with a panic message including the content of self.

Returns Some if self is of variant Break, and None otherwise.

Returns true if self is of variant Continue.

Unwraps the value, yielding the content of Continue.

Panics

Panics if the value is not Continue, with a panic message including the content of self.

Returns Some if self is of variant Continue, and None otherwise.

Returns true if self is of variant If.

Unwraps the value, yielding the content of If.

Panics

Panics if the value is not If, with a panic message including the content of self.

Returns Some if self is of variant If, and None otherwise.

Returns true if self is of variant Switch.

Unwraps the value, yielding the content of Switch.

Panics

Panics if the value is not Switch, with a panic message including the content of self.

Returns Some if self is of variant Switch, and None otherwise.

Returns true if self is of variant Throw.

Unwraps the value, yielding the content of Throw.

Panics

Panics if the value is not Throw, with a panic message including the content of self.

Returns Some if self is of variant Throw, and None otherwise.

Returns true if self is of variant Try.

Unwraps the value, yielding the content of Try.

Panics

Panics if the value is not Try, with a panic message including the content of self.

Returns Some if self is of variant Try, and None otherwise.

Returns true if self is of variant While.

Unwraps the value, yielding the content of While.

Panics

Panics if the value is not While, with a panic message including the content of self.

Returns Some if self is of variant While, and None otherwise.

Returns true if self is of variant DoWhile.

Unwraps the value, yielding the content of DoWhile.

Panics

Panics if the value is not DoWhile, with a panic message including the content of self.

Returns Some if self is of variant DoWhile, and None otherwise.

Returns true if self is of variant For.

Unwraps the value, yielding the content of For.

Panics

Panics if the value is not For, with a panic message including the content of self.

Returns Some if self is of variant For, and None otherwise.

Returns true if self is of variant ForIn.

Unwraps the value, yielding the content of ForIn.

Panics

Panics if the value is not ForIn, with a panic message including the content of self.

Returns Some if self is of variant ForIn, and None otherwise.

Returns true if self is of variant ForOf.

Unwraps the value, yielding the content of ForOf.

Panics

Panics if the value is not ForOf, with a panic message including the content of self.

Returns Some if self is of variant ForOf, and None otherwise.

Returns true if self is of variant Decl.

Unwraps the value, yielding the content of Decl.

Panics

Panics if the value is not Decl, with a panic message including the content of self.

Returns Some if self is of variant Decl, and None otherwise.

Returns true if self is of variant Expr.

Unwraps the value, yielding the content of Expr.

Panics

Panics if the value is not Expr, with a panic message including the content of self.

Returns Some if self is of variant Expr, and None otherwise.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Get span of self.

Create a dummy value of this type.

Mutate self using op, which accepts owned data.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more