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_nodeThe embedded base node.
body: *mut pm_nodeParenthesesNode#body
opening_loc: pm_location_tParenthesesNode#opening_loc
closing_loc: pm_location_tParenthesesNode#closing_loc