pm_rescue_modifier_node_t

Type Alias pm_rescue_modifier_node_t 

Source
pub type pm_rescue_modifier_node_t = pm_rescue_modifier_node;
Expand description

RescueModifierNode

Represents an expression modified with a rescue.

 foo rescue nil
 ^^^^^^^^^^^^^^

Type: ::PM_RESCUE_MODIFIER_NODE

@extends pm_node_t

Aliased Type§

#[repr(C)]
pub struct pm_rescue_modifier_node_t { pub base: pm_node, pub expression: *mut pm_node, pub keyword_loc: pm_location_t, pub rescue_expression: *mut pm_node, }

Fields§

§base: pm_node

The embedded base node.

§expression: *mut pm_node

RescueModifierNode#expression

§keyword_loc: pm_location_t

RescueModifierNode#keyword_loc

§rescue_expression: *mut pm_node

RescueModifierNode#rescue_expression