pub type pm_unless_node_t = pm_unless_node;
Expand description

UnlessNode

Type: PM_UNLESS_NODE

@extends pm_node_t

Aliased Type§

struct pm_unless_node_t {
    pub base: pm_node,
    pub keyword_loc: pm_location_t,
    pub predicate: *mut pm_node,
    pub then_keyword_loc: pm_location_t,
    pub statements: *mut pm_statements_node,
    pub consequent: *mut pm_else_node,
    pub end_keyword_loc: pm_location_t,
}

Fields§

§base: pm_node

The embedded base node.

§keyword_loc: pm_location_t

UnlessNode#keyword_loc

§predicate: *mut pm_node

UnlessNode#predicate

§then_keyword_loc: pm_location_t

UnlessNode#then_keyword_loc

§statements: *mut pm_statements_node

UnlessNode#statements

§consequent: *mut pm_else_node

UnlessNode#consequent

§end_keyword_loc: pm_location_t

UnlessNode#end_keyword_loc