Struct lib_ruby_parser::nodes::Postexe [−][src]
#[repr(C)]pub struct Postexe {
pub body: Option<Box<Node>>,
pub keyword_l: Loc,
pub begin_l: Loc,
pub end_l: Loc,
pub expression_l: Loc,
}Expand description
Represents END { .. } statement
Fields
body: Option<Box<Node>>Body of the block
keyword_l: LocLocation of the END keyword
END { 42 }
~~~begin_l: LocLocation of the open parenthesis
END { 42 }
~end_l: LocLocation of the closing parenthesis
END { 42 }
~expression_l: LocLocation of the full expression
END { 42 }
~~~~~~~~~~Implementations
Returns keyword_l field
Returns begin_l field
Returns expression_l field
Sets keyword_l field
Sets begin_l field
Sets expression_l field
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Postexe
impl UnwindSafe for Postexe
Blanket Implementations
Mutably borrows from an owned value. Read more