pub type pm_ensure_node_t = pm_ensure_node;
Expand description
EnsureNode
Represents an ensure
clause in a begin
statement.
begin
foo
ensure
^^^^^^
bar
end
Type: ::PM_ENSURE_NODE
@extends pm_node_t
Aliased Type§
#[repr(C)]pub struct pm_ensure_node_t {
pub base: pm_node,
pub ensure_keyword_loc: pm_location_t,
pub statements: *mut pm_statements_node,
pub end_keyword_loc: pm_location_t,
}
Fields§
§base: pm_node
The embedded base node.
ensure_keyword_loc: pm_location_t
EnsureNode#ensure_keyword_loc
statements: *mut pm_statements_node
EnsureNode#statements
end_keyword_loc: pm_location_t
EnsureNode#end_keyword_loc