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.
7231 7232 7233 7234 7235 7236 7237 7238 7239 |
# File 'lib/prism/node.rb', line 7231 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 }
^^^^^
7291 7292 7293 |
# File 'lib/prism/node.rb', line 7291 def elements @elements end |
Class Method Details
.type ⇒ Object
Return a symbol representation of this node type. See ‘Node::type`.
7324 7325 7326 |
# File 'lib/prism/node.rb', line 7324 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.
7330 7331 7332 7333 7334 7335 7336 |
# File 'lib/prism/node.rb', line 7330 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
7242 7243 7244 |
# File 'lib/prism/node.rb', line 7242 def accept(visitor) visitor.visit_hash_node(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
def child_nodes: () -> Array[nil | Node]
7247 7248 7249 |
# File 'lib/prism/node.rb', line 7247 def child_nodes [*elements] end |
#closing ⇒ Object
def closing: () -> String
7309 7310 7311 |
# File 'lib/prism/node.rb', line 7309 def closing closing_loc.slice end |
#closing_loc ⇒ Object
The location of the closing brace.
{ a => b }
^
7297 7298 7299 7300 7301 |
# File 'lib/prism/node.rb', line 7297 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]
7257 7258 7259 |
# File 'lib/prism/node.rb', line 7257 def comment_targets [opening_loc, *elements, closing_loc] #: Array[Prism::node | Location] end |
#compact_child_nodes ⇒ Object
def compact_child_nodes: () -> Array
7252 7253 7254 |
# File 'lib/prism/node.rb', line 7252 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
7262 7263 7264 |
# File 'lib/prism/node.rb', line 7262 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 }
7270 7271 7272 |
# File 'lib/prism/node.rb', line 7270 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
7314 7315 7316 |
# File 'lib/prism/node.rb', line 7314 def inspect InspectVisitor.compose(self) end |
#opening ⇒ Object
def opening: () -> String
7304 7305 7306 |
# File 'lib/prism/node.rb', line 7304 def opening opening_loc.slice end |
#opening_loc ⇒ Object
The location of the opening brace.
{ a => b }
^
7278 7279 7280 7281 7282 |
# File 'lib/prism/node.rb', line 7278 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`.
7319 7320 7321 |
# File 'lib/prism/node.rb', line 7319 def type :hash_node end |