#[repr(C)]pub struct pm_call_operator_write_node {
pub base: pm_node_t,
pub receiver: *mut pm_node,
pub call_operator_loc: pm_location_t,
pub message_loc: pm_location_t,
pub read_name: pm_constant_id_t,
pub write_name: pm_constant_id_t,
pub binary_operator: pm_constant_id_t,
pub binary_operator_loc: pm_location_t,
pub value: *mut pm_node,
}Expand description
CallOperatorWriteNode
Represents the use of an assignment operator on a call.
foo.bar += baz
^^^^^^^^^^^^^^Type: ::PM_CALL_OPERATOR_WRITE_NODE
Flags (#pm_call_node_flags):
- ::PM_CALL_NODE_FLAGS_SAFE_NAVIGATION
- ::PM_CALL_NODE_FLAGS_VARIABLE_CALL
- ::PM_CALL_NODE_FLAGS_ATTRIBUTE_WRITE
- ::PM_CALL_NODE_FLAGS_IGNORE_VISIBILITY
@extends pm_node_t
Fields§
§base: pm_node_tThe embedded base node.
receiver: *mut pm_nodeCallOperatorWriteNode#receiver
The object that the method is being called on. This can be either nil or any non-void expressions.
foo.bar += value
^^^call_operator_loc: pm_location_tCallOperatorWriteNode#call_operator_loc
Represents the location of the call operator.
foo.bar += value
^message_loc: pm_location_tCallOperatorWriteNode#message_loc
Represents the location of the message.
foo.bar += value
^^^read_name: pm_constant_id_tCallOperatorWriteNode#read_name
Represents the name of the method being called.
foo.bar += value # read_name `:bar`
^^^write_name: pm_constant_id_tCallOperatorWriteNode#write_name
Represents the name of the method being written to.
foo.bar += value # write_name `:bar=`
^^^binary_operator: pm_constant_id_tCallOperatorWriteNode#binary_operator
Represents the binary operator being used.
foo.bar += value # binary_operator `:+`
^binary_operator_loc: pm_location_tCallOperatorWriteNode#binary_operator_loc
Represents the location of the binary operator.
foo.bar += value
^^value: *mut pm_nodeCallOperatorWriteNode#value
Represents the value being assigned.
foo.bar += value
^^^^^Trait Implementations§
Source§impl Clone for pm_call_operator_write_node
impl Clone for pm_call_operator_write_node
Source§fn clone(&self) -> pm_call_operator_write_node
fn clone(&self) -> pm_call_operator_write_node
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more