pub type pm_else_node_t = pm_else_node;Expand description
ElseNode
Represents an else clause in a case, if, or unless statement.
if a then b else c end
^^^^^^^^^^Type: ::PM_ELSE_NODE
@extends pm_node_t
Aliased Type§
#[repr(C)]pub struct pm_else_node_t {
pub base: pm_node,
pub else_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.
else_keyword_loc: pm_location_tElseNode#else_keyword_loc
statements: *mut pm_statements_nodeElseNode#statements
end_keyword_loc: pm_location_tElseNode#end_keyword_loc