class YARP::CallAndWriteNode
^^^^^^^^^^^^^^^^^
foo.bar &&= value
Represents the use of the ‘&&=` operator on a call.
def accept(visitor)
def accept(visitor) visitor.visit_call_and_write_node(self) end
def call_operator
def call_operator call_operator_loc&.slice end
def child_nodes
def child_nodes [receiver, arguments, value] end
def closing
def closing closing_loc&.slice end
def comment_targets
def comment_targets [*receiver, *call_operator_loc, *message_loc, *opening_loc, *arguments, *closing_loc, operator_loc, value] end
def copy(**params)
def copy(**params) CallAndWriteNode.new( params.fetch(:receiver) { receiver }, params.fetch(:call_operator_loc) { call_operator_loc }, params.fetch(:message_loc) { message_loc }, params.fetch(:opening_loc) { opening_loc }, params.fetch(:arguments) { arguments }, params.fetch(:closing_loc) { closing_loc }, params.fetch(:flags) { flags }, params.fetch(:read_name) { read_name }, params.fetch(:write_name) { write_name }, params.fetch(:operator_loc) { operator_loc }, params.fetch(:value) { value }, params.fetch(:location) { location }, ) end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { receiver: receiver, call_operator_loc: call_operator_loc, message_loc: message_loc, opening_loc: opening_loc, arguments: arguments, closing_loc: closing_loc, flags: flags, read_name: read_name, write_name: write_name, operator_loc: operator_loc, value: value, location: location } end
def initialize(receiver, call_operator_loc, message_loc, opening_loc, arguments, closing_loc, flags, read_name, write_name, operator_loc, value, location)
def initialize(receiver, call_operator_loc, message_loc, opening_loc, arguments, closing_loc, flags, read_name, write_name, operator_loc, value, location) @receiver = receiver @call_operator_loc = call_operator_loc @message_loc = message_loc @opening_loc = opening_loc @arguments = arguments @closing_loc = closing_loc @flags = flags @read_name = read_name @write_name = write_name @operator_loc = operator_loc @value = value @location = location end
def inspect(inspector = NodeInspector.new)
def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) if (receiver = self.receiver).nil? inspector << "├── receiver: ∅\n" else inspector << "├── receiver:\n" inspector << receiver.inspect(inspector.child_inspector("│ ")).delete_prefix(inspector.prefix) end inspector << "├── call_operator_loc: #{inspector.location(call_operator_loc)}\n" inspector << "├── message_loc: #{inspector.location(message_loc)}\n" inspector << "├── opening_loc: #{inspector.location(opening_loc)}\n" if (arguments = self.arguments).nil? inspector << "├── arguments: ∅\n" else inspector << "├── arguments:\n" inspector << arguments.inspect(inspector.child_inspector("│ ")).delete_prefix(inspector.prefix) end inspector << "├── closing_loc: #{inspector.location(closing_loc)}\n" inspector << "├── flags: #{[("safe_navigation" if safe_navigation?), ("variable_call" if variable_call?)].compact.join(", ")}\n" inspector << "├── read_name: #{read_name.inspect}\n" inspector << "├── write_name: #{write_name.inspect}\n" inspector << "├── operator_loc: #{inspector.location(operator_loc)}\n" inspector << "└── value:\n" inspector << inspector.child_node(value, " ") inspector.to_str end
def message
def message message_loc&.slice end
def opening
def opening opening_loc&.slice end
def operator
def operator operator_loc.slice end
def safe_navigation?
def safe_navigation? flags.anybits?(CallNodeFlags::SAFE_NAVIGATION) end
def variable_call?
def variable_call? flags.anybits?(CallNodeFlags::VARIABLE_CALL) end