pub type pm_and_node_t = pm_and_node;Expand description
AndNode
Represents the use of the && operator or the and keyword.
left and right
^^^^^^^^^^^^^^Type: ::PM_AND_NODE
@extends pm_node_t
Aliased Type§
#[repr(C)]pub struct pm_and_node_t {
pub base: pm_node,
pub left: *mut pm_node,
pub right: *mut pm_node,
pub operator_loc: pm_location_t,
}Fields§
§base: pm_nodeThe embedded base node.
left: *mut pm_nodeAndNode#left
Represents the left side of the expression. It can be any non-void expression.
left and right
^^^^ 1 && 2
^right: *mut pm_nodeAndNode#right
Represents the right side of the expression.
left && right
^^^^^ 1 and 2
^operator_loc: pm_location_tAndNode#operator_loc
The location of the and keyword or the && operator.
left and right
^^^