Class: Prism::IndexOrWriteNode

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 `[]`.

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

Initialize a new IndexOrWriteNode node.



9414
9415
9416
9417
9418
9419
9420
9421
9422
9423
9424
9425
9426
9427
# File 'lib/prism/node.rb', line 9414

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?



9523
9524
9525
# File 'lib/prism/node.rb', line 9523

def arguments
  @arguments
end

#blockObject (readonly)

attr_reader block: BlockArgumentNode?



9539
9540
9541
# File 'lib/prism/node.rb', line 9539

def block
  @block
end

#receiverObject (readonly)

attr_reader receiver: Prism::node?



9488
9489
9490
# File 'lib/prism/node.rb', line 9488

def receiver
  @receiver
end

#valueObject (readonly)

attr_reader value: Prism::node



9555
9556
9557
# File 'lib/prism/node.rb', line 9555

def value
  @value
end

Class Method Details

.typeObject

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



9588
9589
9590
# File 'lib/prism/node.rb', line 9588

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



9594
9595
9596
9597
9598
9599
9600
9601
9602
9603
9604
9605
# File 'lib/prism/node.rb', line 9594

def ===(other)
  other.is_a?(IndexOrWriteNode) &&
    (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



9430
9431
9432
# File 'lib/prism/node.rb', line 9430

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

#attribute_write?Boolean

def attribute_write?: () -> bool

Returns:

  • (Boolean)


9478
9479
9480
# File 'lib/prism/node.rb', line 9478

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

#call_operatorObject

def call_operator: () -> String?



9558
9559
9560
# File 'lib/prism/node.rb', line 9558

def call_operator
  call_operator_loc&.slice
end

#call_operator_locObject

attr_reader call_operator_loc: Location?



9491
9492
9493
9494
9495
9496
9497
9498
9499
9500
9501
# File 'lib/prism/node.rb', line 9491

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[nil | Node]



9435
9436
9437
# File 'lib/prism/node.rb', line 9435

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

#closingObject

def closing: () -> String



9568
9569
9570
# File 'lib/prism/node.rb', line 9568

def closing
  closing_loc.slice
end

#closing_locObject

attr_reader closing_loc: Location



9526
9527
9528
9529
9530
# File 'lib/prism/node.rb', line 9526

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]



9450
9451
9452
# File 'lib/prism/node.rb', line 9450

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



9440
9441
9442
9443
9444
9445
9446
9447
# File 'lib/prism/node.rb', line 9440

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) -> IndexOrWriteNode



9455
9456
9457
# File 'lib/prism/node.rb', line 9455

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)
  IndexOrWriteNode.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 }



9463
9464
9465
# File 'lib/prism/node.rb', line 9463

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

#ignore_visibility?Boolean

def ignore_visibility?: () -> bool

Returns:

  • (Boolean)


9483
9484
9485
# File 'lib/prism/node.rb', line 9483

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

#inspectObject

def inspect -> String



9578
9579
9580
# File 'lib/prism/node.rb', line 9578

def inspect
  InspectVisitor.compose(self)
end

#openingObject

def opening: () -> String



9563
9564
9565
# File 'lib/prism/node.rb', line 9563

def opening
  opening_loc.slice
end

#opening_locObject

attr_reader opening_loc: Location



9510
9511
9512
9513
9514
# File 'lib/prism/node.rb', line 9510

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



9573
9574
9575
# File 'lib/prism/node.rb', line 9573

def operator
  operator_loc.slice
end

#operator_locObject

attr_reader operator_loc: Location



9542
9543
9544
9545
9546
# File 'lib/prism/node.rb', line 9542

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

Returns:

  • (Boolean)


9468
9469
9470
# File 'lib/prism/node.rb', line 9468

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.



9505
9506
9507
# File 'lib/prism/node.rb', line 9505

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.



9534
9535
9536
# File 'lib/prism/node.rb', line 9534

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.



9518
9519
9520
# File 'lib/prism/node.rb', line 9518

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.



9550
9551
9552
# File 'lib/prism/node.rb', line 9550

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

#typeObject

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



9583
9584
9585
# File 'lib/prism/node.rb', line 9583

def type
  :index_or_write_node
end

#variable_call?Boolean

def variable_call?: () -> bool

Returns:

  • (Boolean)


9473
9474
9475
# File 'lib/prism/node.rb', line 9473

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