Class: Prism::HashNode

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

Overview

Represents a hash literal.

{ a => b }
^^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, opening_loc, elements, closing_loc) ⇒ HashNode

Initialize a new HashNode node.



8238
8239
8240
8241
8242
8243
8244
8245
8246
# File 'lib/prism/node.rb', line 8238

def initialize(source, node_id, location, flags, opening_loc, elements, closing_loc)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @opening_loc = opening_loc
  @elements = elements
  @closing_loc = closing_loc
end

Instance Attribute Details

#elementsObject (readonly)

The elements of the hash. These can be either ‘AssocNode`s or `AssocSplatNode`s.

{ a: b }
  ^^^^

{ **foo }
  ^^^^^


8304
8305
8306
# File 'lib/prism/node.rb', line 8304

def elements
  @elements
end

Class Method Details

.typeObject

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



8343
8344
8345
# File 'lib/prism/node.rb', line 8343

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



8349
8350
8351
8352
8353
8354
8355
# File 'lib/prism/node.rb', line 8349

def ===(other)
  other.is_a?(HashNode) &&
    (opening_loc.nil? == other.opening_loc.nil?) &&
    (elements.length == other.elements.length) &&
    elements.zip(other.elements).all? { |left, right| left === right } &&
    (closing_loc.nil? == other.closing_loc.nil?)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



8249
8250
8251
# File 'lib/prism/node.rb', line 8249

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



8254
8255
8256
# File 'lib/prism/node.rb', line 8254

def child_nodes
  [*elements]
end

#closingObject

def closing: () -> String



8328
8329
8330
# File 'lib/prism/node.rb', line 8328

def closing
  closing_loc.slice
end

#closing_locObject

The location of the closing brace.

{ a => b }
         ^


8310
8311
8312
8313
8314
# File 'lib/prism/node.rb', line 8310

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]



8264
8265
8266
# File 'lib/prism/node.rb', line 8264

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

#compact_child_nodesObject

def compact_child_nodes: () -> Array



8259
8260
8261
# File 'lib/prism/node.rb', line 8259

def compact_child_nodes
  [*elements]
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, opening_loc: self.opening_loc, elements: self.elements, closing_loc: self.closing_loc) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?opening_loc: Location, ?elements: Array[AssocNode | AssocSplatNode], ?closing_loc: Location) -> HashNode



8269
8270
8271
# File 'lib/prism/node.rb', line 8269

def copy(node_id: self.node_id, location: self.location, flags: self.flags, opening_loc: self.opening_loc, elements: self.elements, closing_loc: self.closing_loc)
  HashNode.new(source, node_id, location, flags, opening_loc, elements, closing_loc)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, opening_loc: Location, elements: Array[AssocNode | AssocSplatNode], closing_loc: Location }



8277
8278
8279
# File 'lib/prism/node.rb', line 8277

def deconstruct_keys(keys)
  { node_id: node_id, location: location, opening_loc: opening_loc, elements: elements, closing_loc: closing_loc }
end

#inspectObject

def inspect -> String



8333
8334
8335
# File 'lib/prism/node.rb', line 8333

def inspect
  InspectVisitor.compose(self)
end

#openingObject

def opening: () -> String



8323
8324
8325
# File 'lib/prism/node.rb', line 8323

def opening
  opening_loc.slice
end

#opening_locObject

The location of the opening brace.

{ a => b }
^


8285
8286
8287
8288
8289
# File 'lib/prism/node.rb', line 8285

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

#save_closing_loc(repository) ⇒ Object

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



8318
8319
8320
# File 'lib/prism/node.rb', line 8318

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.



8293
8294
8295
# File 'lib/prism/node.rb', line 8293

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

#typeObject

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



8338
8339
8340
# File 'lib/prism/node.rb', line 8338

def type
  :hash_node
end