class Prism::IndexTargetNode

Represents assigning to an index.

foo[bar], = 1
^^^^^^^^

begin
rescue => foo[bar]
          ^^^^^^^^
end

for foo[bar] in baz do end
    ^^^^^^^^

Attributes

attr_reader arguments: ArgumentsNode?

attr_reader block: BlockArgumentNode?

attr_reader receiver: Prism::node

Public Class Methods

Source
# File lib/prism/node.rb, line 8555
def initialize(source, node_id, location, flags, receiver, opening_loc, arguments, closing_loc, block)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @receiver = receiver
  @opening_loc = opening_loc
  @arguments = arguments
  @closing_loc = closing_loc
  @block = block
end

Initialize a new IndexTargetNode node.

Source
# File lib/prism/node.rb, line 8668
def self.type
  :index_target_node
end

Return a symbol representation of this node type. See ‘Node::type`.

Public Instance Methods

Source
# File lib/prism/node.rb, line 8674
def ===(other)
  other.is_a?(IndexTargetNode) &&
    (flags === other.flags) &&
    (receiver === other.receiver) &&
    (opening_loc.nil? == other.opening_loc.nil?) &&
    (arguments === other.arguments) &&
    (closing_loc.nil? == other.closing_loc.nil?) &&
    (block === other.block)
end

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.

Source
# File lib/prism/node.rb, line 8568
def accept(visitor)
  visitor.visit_index_target_node(self)
end

def accept: (Visitor visitor) -> void

Source
# File lib/prism/node.rb, line 8615
def attribute_write?
  flags.anybits?(CallNodeFlags::ATTRIBUTE_WRITE)
end

def attribute_write?: () -> bool

Source
# File lib/prism/node.rb, line 8573
def child_nodes
  [receiver, arguments, block]
end

def child_nodes: () -> Array[nil | Node]

Also aliased as: deconstruct
Source
# File lib/prism/node.rb, line 8653
def closing
  closing_loc.slice
end

def closing: () -> String

Source
# File lib/prism/node.rb, line 8638
def closing_loc
  location = @closing_loc
  return location if location.is_a?(Location)
  @closing_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

attr_reader closing_loc: Location

Source
# File lib/prism/node.rb, line 8587
def comment_targets
  [receiver, opening_loc, *arguments, closing_loc, *block] #: Array[Prism::node | Location]
end

def comment_targets: () -> Array[Node | Location]

Source
# File lib/prism/node.rb, line 8578
def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << receiver
  compact << arguments if arguments
  compact << block if block
  compact
end

def compact_child_nodes: () -> Array

Source
# File lib/prism/node.rb, line 8592
def copy(node_id: self.node_id, location: self.location, flags: self.flags, receiver: self.receiver, opening_loc: self.opening_loc, arguments: self.arguments, closing_loc: self.closing_loc, block: self.block)
  IndexTargetNode.new(source, node_id, location, flags, receiver, opening_loc, arguments, closing_loc, block)
end

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?receiver: Prism::node, ?opening_loc: Location, ?arguments: ArgumentsNode?, ?closing_loc: Location, ?block: BlockArgumentNode?) -> IndexTargetNode

def deconstruct: () -> Array[nil | Node]

Alias for: child_nodes
Source
# File lib/prism/node.rb, line 8600
def deconstruct_keys(keys)
  { node_id: node_id, location: location, receiver: receiver, opening_loc: opening_loc, arguments: arguments, closing_loc: closing_loc, block: block }
end

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, receiver: Prism::node, opening_loc: Location, arguments: ArgumentsNode?, closing_loc: Location, block: BlockArgumentNode? }

Source
# File lib/prism/node.rb, line 8620
def ignore_visibility?
  flags.anybits?(CallNodeFlags::IGNORE_VISIBILITY)
end

def ignore_visibility?: () -> bool

Source
# File lib/prism/node.rb, line 8658
def inspect
  InspectVisitor.compose(self)
end

def inspect -> String

Source
# File lib/prism/node.rb, line 8648
def opening
  opening_loc.slice
end

def opening: () -> String

Source
# File lib/prism/node.rb, line 8628
def opening_loc
  location = @opening_loc
  return location if location.is_a?(Location)
  @opening_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

attr_reader opening_loc: Location

Source
# File lib/prism/node.rb, line 8605
def safe_navigation?
  flags.anybits?(CallNodeFlags::SAFE_NAVIGATION)
end

def safe_navigation?: () -> bool

Source
# File lib/prism/node.rb, line 8663
def type
  :index_target_node
end

Return a symbol representation of this node type. See ‘Node#type`.

Source
# File lib/prism/node.rb, line 8610
def variable_call?
  flags.anybits?(CallNodeFlags::VARIABLE_CALL)
end

def variable_call?: () -> bool