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: BlockArgumentNode?

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 10331
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 10465
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 10471
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 10344
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 10400
def attribute_write?
  flags.anybits?(CallNodeFlags::ATTRIBUTE_WRITE)
end
child_nodes() click to toggle source

def child_nodes: () -> Array

# File lib/prism/node.rb, line 10349
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 10450
def closing
  closing_loc.slice
end
closing_loc() click to toggle source

attr_reader closing_loc: Location

# File lib/prism/node.rb, line 10429
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 10372
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 10363
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: BlockArgumentNode?) -> IndexTargetNode

# File lib/prism/node.rb, line 10377
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

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: BlockArgumentNode? }

# File lib/prism/node.rb, line 10385
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
each_child_node() { |receiver| ... } click to toggle source

def each_child_node: () { (Prism::node) -> void } -> void | () -> Enumerator

# File lib/prism/node.rb, line 10354
def each_child_node
  return to_enum(:each_child_node) unless block_given?

  yield receiver
  yield arguments if arguments
  yield block if block
end
ignore_visibility?() click to toggle source

def ignore_visibility?: () -> bool

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

def inspect -> String

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

def opening: () -> String

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

attr_reader opening_loc: Location

# File lib/prism/node.rb, line 10413
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 10390
def safe_navigation?
  flags.anybits?(CallNodeFlags::SAFE_NAVIGATION)
end
save_closing_loc(repository) click to toggle source

Save the closing_loc location using the given saved source so that it can be retrieved later.

# File lib/prism/node.rb, line 10437
def save_closing_loc(repository)
  repository.enter(node_id, :closing_loc)
end
save_opening_loc(repository) click to toggle source

Save the opening_loc location using the given saved source so that it can be retrieved later.

# File lib/prism/node.rb, line 10421
def save_opening_loc(repository)
  repository.enter(node_id, :opening_loc)
end
type() click to toggle source

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

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

def variable_call?: () -> bool

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