pub enum ExpressionOrBlock {
Expression(Box<Expression>),
Block(Block),
}
Expand description
For ArrowFunction and [crate::MatchArm] bodies
Variants§
Expression(Box<Expression>)
Block(Block)
Implementations§
source§impl ExpressionOrBlock
impl ExpressionOrBlock
pub fn get_block_id(&self) -> Option<BlockId>
Trait Implementations§
source§impl ASTNode for ExpressionOrBlock
impl ASTNode for ExpressionOrBlock
source§fn get_position(&self) -> Cow<'_, Span>
fn get_position(&self) -> Cow<'_, Span>
Returns position of node as span AS IT WAS PARSED. May be none if AST was doesn’t match anything in source
fn from_reader( reader: &mut impl TokenReader<TSXToken, Span>, state: &mut ParsingState, settings: &ParseSettings ) -> ParseResult<Self>
fn to_string_from_buffer<T: ToString>( &self, buf: &mut T, settings: &ToStringSettingsAndData, depth: u8 )
source§fn from_string(
source: String,
settings: ParseSettings,
source_id: SourceId,
offset: Option<usize>,
cursors: Vec<(usize, EmptyCursorId)>
) -> ParseResult<ParseOutput<Self>>
fn from_string( source: String, settings: ParseSettings, source_id: SourceId, offset: Option<usize>, cursors: Vec<(usize, EmptyCursorId)> ) -> ParseResult<ParseOutput<Self>>
From string, with default impl to call abstract method from_reader
source§fn to_string(&self, settings: &ToStringSettingsAndData) -> String
fn to_string(&self, settings: &ToStringSettingsAndData) -> String
Returns structure as valid string
source§impl Clone for ExpressionOrBlock
impl Clone for ExpressionOrBlock
source§fn clone(&self) -> ExpressionOrBlock
fn clone(&self) -> ExpressionOrBlock
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExpressionOrBlock
impl Debug for ExpressionOrBlock
source§impl PartialEq<ExpressionOrBlock> for ExpressionOrBlock
impl PartialEq<ExpressionOrBlock> for ExpressionOrBlock
source§fn eq(&self, other: &ExpressionOrBlock) -> bool
fn eq(&self, other: &ExpressionOrBlock) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.