pm_yield_node_t

Type Alias pm_yield_node_t 

Source
pub type pm_yield_node_t = pm_yield_node;
Expand description

YieldNode

Represents the use of the yield keyword.

 yield 1
 ^^^^^^^

Type: ::PM_YIELD_NODE

@extends pm_node_t

Aliased Type§

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

Fields§

§base: pm_node

The embedded base node.

§keyword_loc: pm_location_t

YieldNode#keyword_loc

§lparen_loc: pm_location_t

YieldNode#lparen_loc

§arguments: *mut pm_arguments_node

YieldNode#arguments

§rparen_loc: pm_location_t

YieldNode#rparen_loc