pm_parentheses_node_t

Type Alias pm_parentheses_node_t 

Source
pub type pm_parentheses_node_t = pm_parentheses_node;
Expand description

ParenthesesNode

Represents a parenthesized expression

 (10 + 34)
 ^^^^^^^^^

Type: ::PM_PARENTHESES_NODE

Flags (#pm_parentheses_node_flags):

  • ::PM_PARENTHESES_NODE_FLAGS_MULTIPLE_STATEMENTS

@extends pm_node_t

Aliased Type§

#[repr(C)]
pub struct pm_parentheses_node_t { pub base: pm_node, pub body: *mut pm_node, pub opening_loc: pm_location_t, pub closing_loc: pm_location_t, }

Fields§

§base: pm_node

The embedded base node.

§body: *mut pm_node

ParenthesesNode#body

§opening_loc: pm_location_t

ParenthesesNode#opening_loc

§closing_loc: pm_location_t

ParenthesesNode#closing_loc