pub type pm_parentheses_node_t = pm_parentheses_node;
Expand description

ParenthesesNode

Type: PM_PARENTHESES_NODE

@extends pm_node_t

Aliased Type§

struct pm_parentheses_node_t {
    pub base: pm_node,
    pub body: *mut pm_node,
    pub opening_loc: pm_location_t,
    pub closing_loc: pm_location_t,
}

Fields§

§base: pm_node

The embedded base node.

§body: *mut pm_node

ParenthesesNode#body

§opening_loc: pm_location_t

ParenthesesNode#opening_loc

§closing_loc: pm_location_t

ParenthesesNode#closing_loc