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_nodeThe embedded base node.
keyword_loc: pm_location_tSuperNode#keyword_loc
lparen_loc: pm_location_tSuperNode#lparen_loc
arguments: *mut pm_arguments_nodeSuperNode#arguments
rparen_loc: pm_location_tSuperNode#rparen_loc
block: *mut pm_nodeSuperNode#block