Class: Prism::IndexAndWriteNode

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

Overview

Represents the use of the ‘&&=` operator on a call to the [] method.

foo.bar[baz] &&= value
^^^^^^^^^^^^^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator_loc, value) ⇒ IndexAndWriteNode

Initialize a new IndexAndWriteNode node.



9693
9694
9695
9696
9697
9698
9699
9700
9701
9702
9703
9704
9705
9706
# File 'lib/prism/node.rb', line 9693

def initialize(source, node_id, location, flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator_loc, value)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @receiver = receiver
  @call_operator_loc = call_operator_loc
  @opening_loc = opening_loc
  @arguments = arguments
  @closing_loc = closing_loc
  @block = block
  @operator_loc = operator_loc
  @value = value
end

Instance Attribute Details

#argumentsObject (readonly)

attr_reader arguments: ArgumentsNode?



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

def arguments
  @arguments
end

#blockObject (readonly)

attr_reader block: BlockArgumentNode?



9828
9829
9830
# File 'lib/prism/node.rb', line 9828

def block
  @block
end

#receiverObject (readonly)

attr_reader receiver: Prism::node?



9777
9778
9779
# File 'lib/prism/node.rb', line 9777

def receiver
  @receiver
end

#valueObject (readonly)

attr_reader value: Prism::node



9844
9845
9846
# File 'lib/prism/node.rb', line 9844

def value
  @value
end

Class Method Details

.typeObject

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



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

def self.type
  :index_and_write_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.



9883
9884
9885
9886
9887
9888
9889
9890
9891
9892
9893
9894
# File 'lib/prism/node.rb', line 9883

def ===(other)
  other.is_a?(IndexAndWriteNode) &&
    (flags === other.flags) &&
    (receiver === other.receiver) &&
    (call_operator_loc.nil? == other.call_operator_loc.nil?) &&
    (opening_loc.nil? == other.opening_loc.nil?) &&
    (arguments === other.arguments) &&
    (closing_loc.nil? == other.closing_loc.nil?) &&
    (block === other.block) &&
    (operator_loc.nil? == other.operator_loc.nil?) &&
    (value === other.value)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



9709
9710
9711
# File 'lib/prism/node.rb', line 9709

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

#attribute_write?Boolean

def attribute_write?: () -> bool



9767
9768
9769
# File 'lib/prism/node.rb', line 9767

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

#call_operatorObject

def call_operator: () -> String?



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

def call_operator
  call_operator_loc&.slice
end

#call_operator_locObject

attr_reader call_operator_loc: Location?



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

def call_operator_loc
  location = @call_operator_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @call_operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



9714
9715
9716
# File 'lib/prism/node.rb', line 9714

def child_nodes
  [receiver, arguments, block, value]
end

#closingObject

def closing: () -> String



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

def closing
  closing_loc.slice
end

#closing_locObject

attr_reader closing_loc: Location



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

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]



9739
9740
9741
# File 'lib/prism/node.rb', line 9739

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



9729
9730
9731
9732
9733
9734
9735
9736
# File 'lib/prism/node.rb', line 9729

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << receiver if receiver
  compact << arguments if arguments
  compact << block if block
  compact << value
  compact
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, receiver: self.receiver, call_operator_loc: self.call_operator_loc, opening_loc: self.opening_loc, arguments: self.arguments, closing_loc: self.closing_loc, block: self.block, operator_loc: self.operator_loc, value: self.value) ⇒ Object

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



9744
9745
9746
# File 'lib/prism/node.rb', line 9744

def copy(node_id: self.node_id, location: self.location, flags: self.flags, receiver: self.receiver, call_operator_loc: self.call_operator_loc, opening_loc: self.opening_loc, arguments: self.arguments, closing_loc: self.closing_loc, block: self.block, operator_loc: self.operator_loc, value: self.value)
  IndexAndWriteNode.new(source, node_id, location, flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator_loc, value)
end

#deconstruct_keys(keys) ⇒ Object

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



9752
9753
9754
# File 'lib/prism/node.rb', line 9752

def deconstruct_keys(keys)
  { node_id: node_id, location: location, receiver: receiver, call_operator_loc: call_operator_loc, opening_loc: opening_loc, arguments: arguments, closing_loc: closing_loc, block: block, operator_loc: operator_loc, value: value }
end

#each_child_node {|receiver| ... } ⇒ Object

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

Yields:



9719
9720
9721
9722
9723
9724
9725
9726
# File 'lib/prism/node.rb', line 9719

def each_child_node
  return to_enum(:each_child_node) unless block_given?

  yield receiver if receiver
  yield arguments if arguments
  yield block if block
  yield value
end

#ignore_visibility?Boolean

def ignore_visibility?: () -> bool



9772
9773
9774
# File 'lib/prism/node.rb', line 9772

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

#inspectObject

def inspect -> String



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

def inspect
  InspectVisitor.compose(self)
end

#openingObject

def opening: () -> String



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

def opening
  opening_loc.slice
end

#opening_locObject

attr_reader opening_loc: Location



9799
9800
9801
9802
9803
# File 'lib/prism/node.rb', line 9799

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

#operatorObject

def operator: () -> String



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

def operator
  operator_loc.slice
end

#operator_locObject

attr_reader operator_loc: Location



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

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

#safe_navigation?Boolean

def safe_navigation?: () -> bool



9757
9758
9759
# File 'lib/prism/node.rb', line 9757

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

#save_call_operator_loc(repository) ⇒ Object

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



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

def save_call_operator_loc(repository)
  repository.enter(node_id, :call_operator_loc) unless @call_operator_loc.nil?
end

#save_closing_loc(repository) ⇒ Object

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



9823
9824
9825
# File 'lib/prism/node.rb', line 9823

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.



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

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

#save_operator_loc(repository) ⇒ Object

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



9839
9840
9841
# File 'lib/prism/node.rb', line 9839

def save_operator_loc(repository)
  repository.enter(node_id, :operator_loc)
end

#typeObject

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



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

def type
  :index_and_write_node
end

#variable_call?Boolean

def variable_call?: () -> bool



9762
9763
9764
# File 'lib/prism/node.rb', line 9762

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