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[nil | Node].
-
#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.
-
#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.
7194 7195 7196 7197 7198 7199 7200 7201 7202 |
# File 'lib/prism/node.rb', line 7194 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 }
^^^^^
7254 7255 7256 |
# File 'lib/prism/node.rb', line 7254 def elements @elements end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
7287 7288 7289 |
# File 'lib/prism/node.rb', line 7287 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.
7293 7294 7295 7296 7297 7298 7299 |
# File 'lib/prism/node.rb', line 7293 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
7205 7206 7207 |
# File 'lib/prism/node.rb', line 7205 def accept(visitor) visitor.visit_hash_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
7210 7211 7212 |
# File 'lib/prism/node.rb', line 7210 def child_nodes [*elements] end |
#closing ⇒ Object
def closing: () -> String
7272 7273 7274 |
# File 'lib/prism/node.rb', line 7272 def closing closing_loc.slice end |
#closing_loc ⇒ Object
The location of the closing brace.
{ a => b }
^
7260 7261 7262 7263 7264 |
# File 'lib/prism/node.rb', line 7260 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]
7220 7221 7222 |
# File 'lib/prism/node.rb', line 7220 def comment_targets [opening_loc, *elements, closing_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
7215 7216 7217 |
# File 'lib/prism/node.rb', line 7215 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
7225 7226 7227 |
# File 'lib/prism/node.rb', line 7225 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 }
7233 7234 7235 |
# File 'lib/prism/node.rb', line 7233 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
7277 7278 7279 |
# File 'lib/prism/node.rb', line 7277 def inspect InspectVisitor.compose(self) end |
#opening ⇒ Object
def opening: () -> String
7267 7268 7269 |
# File 'lib/prism/node.rb', line 7267 def opening opening_loc.slice end |
#opening_loc ⇒ Object
The location of the opening brace.
{ a => b }
^
7241 7242 7243 7244 7245 |
# File 'lib/prism/node.rb', line 7241 def opening_loc location = @opening_loc return location if location.is_a?(Location) @opening_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end |
#type ⇒ Object
Return a symbol representation of this node type. See ‘Node#type`.
7282 7283 7284 |
# File 'lib/prism/node.rb', line 7282 def type :hash_node end |