Class: SyntaxTree::BareAssocHash
- Inherits:
-
Node
- Object
- Node
- SyntaxTree::BareAssocHash
show all
- Defined in:
- lib/syntax_tree/node.rb
Overview
BareAssocHash represents a hash of contents being passed as a method argument (and therefore has omitted braces). It’s very similar to an AssocListFromArgs node.
method(key1: value1, key2: value2)
Instance Attribute Summary collapse
Attributes inherited from Node
#location
Instance Method Summary
collapse
Methods inherited from Node
#construct_keys, #end_char, #pretty_print, #start_char, #to_json, #to_mermaid
Constructor Details
#initialize(assocs:, location:) ⇒ BareAssocHash
Returns a new instance of BareAssocHash.
1856
1857
1858
1859
1860
|
# File 'lib/syntax_tree/node.rb', line 1856
def initialize(assocs:, location:)
@assocs = assocs
@location = location
= []
end
|
Instance Attribute Details
#assocs ⇒ Object
- Array[ Assoc | AssocSplat ]
1851
1852
1853
|
# File 'lib/syntax_tree/node.rb', line 1851
def assocs
@assocs
end
|
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
1854
1855
1856
|
# File 'lib/syntax_tree/node.rb', line 1854
def
end
|
Instance Method Details
#===(other) ⇒ Object
1891
1892
1893
|
# File 'lib/syntax_tree/node.rb', line 1891
def ===(other)
other.is_a?(BareAssocHash) && ArrayMatch.call(assocs, other.assocs)
end
|
#accept(visitor) ⇒ Object
1862
1863
1864
|
# File 'lib/syntax_tree/node.rb', line 1862
def accept(visitor)
visitor.visit_bare_assoc_hash(self)
end
|
#child_nodes ⇒ Object
Also known as:
deconstruct
1866
1867
1868
|
# File 'lib/syntax_tree/node.rb', line 1866
def child_nodes
assocs
end
|
#copy(assocs: nil, location: nil) ⇒ Object
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
|
# File 'lib/syntax_tree/node.rb', line 1870
def copy(assocs: nil, location: nil)
node =
BareAssocHash.new(
assocs: assocs || self.assocs,
location: location || self.location
)
node..concat(.map(&:copy))
node
end
|
#deconstruct_keys(_keys) ⇒ Object
1883
1884
1885
|
# File 'lib/syntax_tree/node.rb', line 1883
def deconstruct_keys(_keys)
{ assocs: assocs, location: location, comments: }
end
|
1887
1888
1889
|
# File 'lib/syntax_tree/node.rb', line 1887
def format(q)
q.seplist(assocs) { |assoc| q.format(assoc) }
end
|
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
|
# File 'lib/syntax_tree/node.rb', line 1895
def format_key(q, key)
@key_formatter ||=
case q.parents.take(3).last
when Break, Next, ReturnNode
HashKeyFormatter::Identity.new
else
HashKeyFormatter.for(self)
end
@key_formatter.format_key(q, key)
end
|