pub type pm_super_node_t = pm_super_node;
Expand description

SuperNode

Type: PM_SUPER_NODE

@extends pm_node_t

Aliased Type§

struct pm_super_node_t {
    pub base: pm_node,
    pub keyword_loc: pm_location_t,
    pub lparen_loc: pm_location_t,
    pub arguments: *mut pm_arguments_node,
    pub rparen_loc: pm_location_t,
    pub block: *mut pm_node,
}

Fields§

§base: pm_node

The embedded base node.

§keyword_loc: pm_location_t

SuperNode#keyword_loc

§lparen_loc: pm_location_t

SuperNode#lparen_loc

§arguments: *mut pm_arguments_node

SuperNode#arguments

§rparen_loc: pm_location_t

SuperNode#rparen_loc

§block: *mut pm_node

SuperNode#block