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 }
~~~~~~~~~~
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Postexeimpl UnwindSafe for PostexeBlanket Implementations
Mutably borrows from an owned value. Read more