Class: Prism::IndexTargetNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
ext/prism/api_node.c

Overview

Represents assigning to an index.

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

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

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, receiver, opening_loc, arguments, closing_loc, block) ⇒ IndexTargetNode

Initialize a new IndexTargetNode node.



9761
9762
9763
9764
9765
9766
9767
9768
9769
9770
9771
# File 'lib/prism/node.rb', line 9761

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

Instance Attribute Details

#argumentsObject (readonly)

attr_reader arguments: ArgumentsNode?



9847
9848
9849
# File 'lib/prism/node.rb', line 9847

def arguments
  @arguments
end

#blockObject (readonly)

attr_reader block: BlockArgumentNode?



9863
9864
9865
# File 'lib/prism/node.rb', line 9863

def block
  @block
end

#receiverObject (readonly)

attr_reader receiver: Prism::node



9831
9832
9833
# File 'lib/prism/node.rb', line 9831

def receiver
  @receiver
end

Class Method Details

.typeObject

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



9886
9887
9888
# File 'lib/prism/node.rb', line 9886

def self.type
  :index_target_node
end

Instance Method Details

#===(other) ⇒ Object

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



9892
9893
9894
9895
9896
9897
9898
9899
9900
# File 'lib/prism/node.rb', line 9892

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) ⇒ Object

def accept: (Visitor visitor) -> void



9774
9775
9776
# File 'lib/prism/node.rb', line 9774

def accept(visitor)
  visitor.visit_index_target_node(self)
end

#attribute_write?Boolean

def attribute_write?: () -> bool

Returns:

  • (Boolean)


9821
9822
9823
# File 'lib/prism/node.rb', line 9821

def attribute_write?
  flags.anybits?(CallNodeFlags::ATTRIBUTE_WRITE)
end

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



9779
9780
9781
# File 'lib/prism/node.rb', line 9779

def child_nodes
  [receiver, arguments, block]
end

#closingObject

def closing: () -> String



9871
9872
9873
# File 'lib/prism/node.rb', line 9871

def closing
  closing_loc.slice
end

#closing_locObject

attr_reader closing_loc: Location



9850
9851
9852
9853
9854
# File 'lib/prism/node.rb', line 9850

def closing_loc
  location = @closing_loc
  return location if location.is_a?(Location)
  @closing_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#comment_targetsObject

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



9793
9794
9795
# File 'lib/prism/node.rb', line 9793

def comment_targets
  [receiver, opening_loc, *arguments, closing_loc, *block] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



9784
9785
9786
9787
9788
9789
9790
# File 'lib/prism/node.rb', line 9784

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) ⇒ Object

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



9798
9799
9800
# File 'lib/prism/node.rb', line 9798

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_keys(keys) ⇒ Object

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



9806
9807
9808
# File 'lib/prism/node.rb', line 9806

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?Boolean

def ignore_visibility?: () -> bool

Returns:

  • (Boolean)


9826
9827
9828
# File 'lib/prism/node.rb', line 9826

def ignore_visibility?
  flags.anybits?(CallNodeFlags::IGNORE_VISIBILITY)
end

#inspectObject

def inspect -> String



9876
9877
9878
# File 'lib/prism/node.rb', line 9876

def inspect
  InspectVisitor.compose(self)
end

#openingObject

def opening: () -> String



9866
9867
9868
# File 'lib/prism/node.rb', line 9866

def opening
  opening_loc.slice
end

#opening_locObject

attr_reader opening_loc: Location



9834
9835
9836
9837
9838
# File 'lib/prism/node.rb', line 9834

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?Boolean

def safe_navigation?: () -> bool

Returns:

  • (Boolean)


9811
9812
9813
# File 'lib/prism/node.rb', line 9811

def safe_navigation?
  flags.anybits?(CallNodeFlags::SAFE_NAVIGATION)
end

#save_closing_loc(repository) ⇒ Object

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



9858
9859
9860
# File 'lib/prism/node.rb', line 9858

def save_closing_loc(repository)
  repository.enter(node_id, :closing_loc)
end

#save_opening_loc(repository) ⇒ Object

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



9842
9843
9844
# File 'lib/prism/node.rb', line 9842

def save_opening_loc(repository)
  repository.enter(node_id, :opening_loc)
end

#typeObject

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



9881
9882
9883
# File 'lib/prism/node.rb', line 9881

def type
  :index_target_node
end

#variable_call?Boolean

def variable_call?: () -> bool

Returns:

  • (Boolean)


9816
9817
9818
# File 'lib/prism/node.rb', line 9816

def variable_call?
  flags.anybits?(CallNodeFlags::VARIABLE_CALL)
end