pub type pm_instance_variable_read_node_t = pm_instance_variable_read_node;Expand description
InstanceVariableReadNode
Represents referencing an instance variable.
@foo
^^^^Type: ::PM_INSTANCE_VARIABLE_READ_NODE
@extends pm_node_t
Aliased Type§
#[repr(C)]pub struct pm_instance_variable_read_node_t {
pub base: pm_node,
pub name: u32,
}Fields§
§base: pm_nodeThe embedded base node.
name: u32InstanceVariableReadNode#name
The name of the instance variable, which is a @ followed by an identifier.
@x # name `:@x` @_test # name `:@_test`