Class: Prism::HashNode
- Inherits:
-
PrismNode
- Object
- PrismNode
- Prism::HashNode
- Defined in:
- lib/prism/node.rb,
ext/prism/api_node.c
Overview
Represents a hash literal.
{ a => b }
^^^^^^^^^^
Instance Attribute Summary collapse
-
#elements ⇒ Object
readonly
The elements of the hash.
Class Method Summary collapse
-
.type ⇒ Object
Return a symbol representation of this node type.
Instance Method Summary collapse
-
#===(other) ⇒ Object
Implements case-equality for the node.
-
#accept(visitor) ⇒ Object
def accept: (Visitor visitor) -> void.
-
#child_nodes ⇒ Object
(also: #deconstruct)
def child_nodes: () -> Array.
-
#closing ⇒ Object
def closing: () -> String.
-
#closing_loc ⇒ Object
The location of the closing brace.
-
#comment_targets ⇒ Object
def comment_targets: () -> Array[Node | Location].
-
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array.
-
#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.
-
#deconstruct_keys(keys) ⇒ Object
def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, opening_loc: Location, elements: Array[AssocNode | AssocSplatNode], closing_loc: Location }.
-
#initialize(source, node_id, location, flags, opening_loc, elements, closing_loc) ⇒ HashNode
constructor
Initialize a new HashNode node.
-
#inspect ⇒ Object
def inspect -> String.
-
#opening ⇒ Object
def opening: () -> String.
-
#opening_loc ⇒ Object
The location of the opening brace.
-
#save_closing_loc(repository) ⇒ Object
Save the closing_loc location using the given saved source so that it can be retrieved later.
-
#save_opening_loc(repository) ⇒ Object
Save the opening_loc location using the given saved source so that it can be retrieved later.
-
#type ⇒ Object
Return a symbol representation of this node type.
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
#elements ⇒ Object (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
.type ⇒ Object
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_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array
8254 8255 8256 |
# File 'lib/prism/node.rb', line 8254 def child_nodes [*elements] end |
#closing ⇒ Object
def closing: () -> String
8328 8329 8330 |
# File 'lib/prism/node.rb', line 8328 def closing closing_loc.slice end |
#closing_loc ⇒ Object
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_targets ⇒ Object
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_nodes ⇒ Object
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 |
#inspect ⇒ Object
def inspect -> String
8333 8334 8335 |
# File 'lib/prism/node.rb', line 8333 def inspect InspectVisitor.compose(self) end |
#opening ⇒ Object
def opening: () -> String
8323 8324 8325 |
# File 'lib/prism/node.rb', line 8323 def opening opening_loc.slice end |
#opening_loc ⇒ Object
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 |
#type ⇒ Object
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 |