pub type pm_ensure_node_t = pm_ensure_node;Expand description
EnsureNode
Represents an ensure clause in a begin statement.
begin
foo
ensure
^^^^^^
bar
endType: ::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_nodeThe embedded base node.
ensure_keyword_loc: pm_location_tEnsureNode#ensure_keyword_loc
statements: *mut pm_statements_nodeEnsureNode#statements
end_keyword_loc: pm_location_tEnsureNode#end_keyword_loc