class Prism::IndexTargetNode
Represents assigning to an index.
foo[bar], = 1
^^^^^^^^
begin
rescue => foo[bar]
^^^^^^^^
end
for foo[bar] in baz do end
^^^^^^^^
Public Class Methods
Source
# File lib/prism/node.rb, line 13123 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
Initialize a new IndexTargetNode node.
Public Instance Methods
Source
# File lib/prism/node.rb, line 13263 def arguments @arguments end
Returns the arguments attribute.
Source
# File lib/prism/node.rb, line 13289 def block @block end
Returns the block attribute.
Source
# File lib/prism/node.rb, line 13237 def receiver @receiver end
Returns the receiver attribute.
Flags
Public Instance Methods
Source
# File lib/prism/node.rb, line 13223 def attribute_write? flags.anybits?(CallNodeFlags::ATTRIBUTE_WRITE) end
a call that is an attribute write, so the value being written should be returned
Source
# File lib/prism/node.rb, line 13229 def ignore_visibility? flags.anybits?(CallNodeFlags::IGNORE_VISIBILITY) end
a call that ignores method visibility
Source
# File lib/prism/node.rb, line 13217 def variable_call? flags.anybits?(CallNodeFlags::VARIABLE_CALL) end
a call that could have been a local variable
Locations
Public Instance Methods
Source
# File lib/prism/node.rb, line 13272 def closing_loc location = @closing_loc return location if location.is_a?(Location) @closing_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Returns the Location represented by closing_loc.
Source
# File lib/prism/node.rb, line 13246 def opening_loc location = @opening_loc return location if location.is_a?(Location) @opening_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Returns the Location represented by opening_loc.
Node Interface
These methods are present on all subclasses of Node. Read the node interface docs for more information.
Public Class Methods
Public Instance Methods
Source
# File lib/prism/node.rb, line 13147 def accept(visitor) visitor.visit_index_target_node(self) end
See Node.accept.
Source
# File lib/prism/node.rb, line 13152 def child_nodes [receiver, arguments, block] end
See Node.child_nodes.
Source
# File lib/prism/node.rb, line 13175 def comment_targets [receiver, opening_loc, *arguments, closing_loc, *block] #: Array[Prism::node | Location] end
See Node.comment_targets.
Source
# File lib/prism/node.rb, line 13166 def compact_child_nodes compact = [] #: Array[Prism::node] compact << receiver compact << arguments if arguments compact << block if block compact end
Source
# File lib/prism/node.rb, line 13183 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
Creates a copy of self with the given fields, using self as the template.
Source
# File lib/prism/node.rb, line 13157 def each_child_node return to_enum(:each_child_node) unless block_given? yield receiver yield arguments if arguments yield block if block end
See Node.each_child_node.
Repository
Methods related to Relocation.
Public Instance Methods
Source
# File lib/prism/node.rb, line 13281 def save_closing_loc(repository) repository.enter(node_id, :closing_loc) end
Save the closing_loc location using the given saved source so that it can be retrieved later.
Source
# File lib/prism/node.rb, line 13255 def save_opening_loc(repository) repository.enter(node_id, :opening_loc) end
Save the opening_loc location using the given saved source so that it can be retrieved later.
Slicing
Public Instance Methods
Source
# File lib/prism/node.rb, line 13307 def closing closing_loc.slice end
Slice the location of closing_loc from the source.
Source
# File lib/prism/node.rb, line 13299 def opening opening_loc.slice end
Slice the location of opening_loc from the source.