//! Representation of block expressions in wright source code.
usecrate::parser::ast::{expression::Expression,metadata::AstNodeMeta};/// A block in wright source code.
#[derive(Debug)]pubstructBlock<'src>{/// The AST node metadata.
pubmeta:AstNodeMeta<'src>,
/// The body of this block as an expression.
pubbody:Box<Expression<'src>>,
}