class Prism::IndexTargetNode

Represents assigning to an index.

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

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

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

Attributes

arguments[R]

attr_reader arguments: ArgumentsNode?

block[R]

attr_reader block: Prism::node?

receiver[R]

attr_reader receiver: Prism::node

Public Class Methods

new(source, node_id, location, flags, receiver, opening_loc, arguments, closing_loc, block) click to toggle source

Initialize a new IndexTargetNode node.

# File lib/prism/node.rb, line 8359
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
type() click to toggle source

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

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

Public Instance Methods

===(other) click to toggle source

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

# File lib/prism/node.rb, line 8475
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
accept(visitor) click to toggle source

def accept: (Visitor visitor) -> void

# File lib/prism/node.rb, line 8372
def accept(visitor)
  visitor.visit_index_target_node(self)
end
attribute_write?() click to toggle source

def attribute_write?: () -> bool

# File lib/prism/node.rb, line 8419
def attribute_write?
  flags.anybits?(CallNodeFlags::ATTRIBUTE_WRITE)
end
child_nodes() click to toggle source

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

# File lib/prism/node.rb, line 8377
def child_nodes
  [receiver, arguments, block]
end
Also aliased as: deconstruct
closing() click to toggle source

def closing: () -> String

# File lib/prism/node.rb, line 8454
def closing
  closing_loc.slice
end
closing_loc() click to toggle source

attr_reader closing_loc: Location

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

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

# File lib/prism/node.rb, line 8391
def comment_targets
  [receiver, opening_loc, *arguments, closing_loc, *block] #: Array[Prism::node | Location]
end
compact_child_nodes() click to toggle source

def compact_child_nodes: () -> Array

# File lib/prism/node.rb, line 8382
def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << receiver
  compact << arguments if arguments
  compact << block if block
  compact
end
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) click to toggle source

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

# File lib/prism/node.rb, line 8396
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
deconstruct()

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

Alias for: child_nodes
deconstruct_keys(keys) click to toggle source

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

# File lib/prism/node.rb, line 8404
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
ignore_visibility?() click to toggle source

def ignore_visibility?: () -> bool

# File lib/prism/node.rb, line 8424
def ignore_visibility?
  flags.anybits?(CallNodeFlags::IGNORE_VISIBILITY)
end
inspect() click to toggle source

def inspect -> String

# File lib/prism/node.rb, line 8459
def inspect
  InspectVisitor.compose(self)
end
opening() click to toggle source

def opening: () -> String

# File lib/prism/node.rb, line 8449
def opening
  opening_loc.slice
end
opening_loc() click to toggle source

attr_reader opening_loc: Location

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

def safe_navigation?: () -> bool

# File lib/prism/node.rb, line 8409
def safe_navigation?
  flags.anybits?(CallNodeFlags::SAFE_NAVIGATION)
end
type() click to toggle source

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

# File lib/prism/node.rb, line 8464
def type
  :index_target_node
end
variable_call?() click to toggle source

def variable_call?: () -> bool

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