class Prism::CallTargetNode
Represents assigning to a method call.
foo.bar, = 1 ^^^^^^^ begin rescue => foo.bar ^^^^^^^ end for foo.bar in baz do end ^^^^^^^
Attributes
attr_reader name: Symbol
attr_reader receiver: Prism::node
Public Class Methods
Initialize a new CallTargetNode
node.
# File prism/node.rb, line 2784 def initialize(source, node_id, location, flags, receiver, call_operator_loc, name, message_loc) @source = source @node_id = node_id @location = location @flags = flags @receiver = receiver @call_operator_loc = call_operator_loc @name = name @message_loc = message_loc end
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 2889 def self.type :call_target_node end
Public Instance Methods
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File prism/node.rb, line 2895 def ===(other) other.is_a?(CallTargetNode) && (flags === other.flags) && (receiver === other.receiver) && (call_operator_loc.nil? == other.call_operator_loc.nil?) && (name === other.name) && (message_loc.nil? == other.message_loc.nil?) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 2796 def accept(visitor) visitor.visit_call_target_node(self) end
def attribute_write?: () -> bool
# File prism/node.rb, line 2839 def attribute_write? flags.anybits?(CallNodeFlags::ATTRIBUTE_WRITE) end
def call_operator
: () -> String
# File prism/node.rb, line 2869 def call_operator call_operator_loc.slice end
attr_reader call_operator_loc
: Location
# File prism/node.rb, line 2852 def call_operator_loc location = @call_operator_loc return location if location.is_a?(Location) @call_operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 2801 def child_nodes [receiver] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 2811 def comment_targets [receiver, call_operator_loc, message_loc] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 2806 def compact_child_nodes [receiver] end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?receiver: Prism::node, ?call_operator_loc: Location
, ?name: Symbol, ?message_loc: Location
) -> CallTargetNode
# File prism/node.rb, line 2816 def copy(node_id: self.node_id, location: self.location, flags: self.flags, receiver: self.receiver, call_operator_loc: self.call_operator_loc, name: self.name, message_loc: self.message_loc) CallTargetNode.new(source, node_id, location, flags, receiver, call_operator_loc, name, message_loc) end
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, receiver: Prism::node, call_operator_loc
: Location
, name: Symbol, message_loc
: Location
}
# File prism/node.rb, line 2824 def deconstruct_keys(keys) { node_id: node_id, location: location, receiver: receiver, call_operator_loc: call_operator_loc, name: name, message_loc: message_loc } end
def ignore_visibility?: () -> bool
# File prism/node.rb, line 2844 def ignore_visibility? flags.anybits?(CallNodeFlags::IGNORE_VISIBILITY) end
def inspect -> String
# File prism/node.rb, line 2879 def inspect InspectVisitor.compose(self) end
def message: () -> String
# File prism/node.rb, line 2874 def message message_loc.slice end
attr_reader message_loc
: Location
# File prism/node.rb, line 2862 def message_loc location = @message_loc return location if location.is_a?(Location) @message_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 2884 def type :call_target_node end
def variable_call?: () -> bool
# File prism/node.rb, line 2834 def variable_call? flags.anybits?(CallNodeFlags::VARIABLE_CALL) end