pm_super_node_t

Type Alias pm_super_node_t 

Source
pub type pm_super_node_t = pm_super_node;
Expand description

SuperNode

Represents the use of the super keyword with parentheses or arguments.

 super()
 ^^^^^^^
 super foo, bar
 ^^^^^^^^^^^^^^

Type: ::PM_SUPER_NODE

@extends pm_node_t

Aliased Type§

#[repr(C)]
pub 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