Class: SyntaxTree::HashLiteral

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

HashLiteral represents a hash literal.

{ key => value }

Defined Under Namespace

Classes: EmptyWithCommentsFormatter

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(lbrace:, assocs:, location:) ⇒ HashLiteral

Returns a new instance of HashLiteral.



5665
5666
5667
5668
5669
5670
# File 'lib/syntax_tree/node.rb', line 5665

def initialize(lbrace:, assocs:, location:)
  @lbrace = lbrace
  @assocs = assocs
  @location = location
  @comments = []
end

Instance Attribute Details

#assocsObject (readonly)

Array[ Assoc | AssocSplat ]

the optional contents of the hash



5660
5661
5662
# File 'lib/syntax_tree/node.rb', line 5660

def assocs
  @assocs
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



5663
5664
5665
# File 'lib/syntax_tree/node.rb', line 5663

def comments
  @comments
end

#lbraceObject (readonly)

LBrace

the left brace that opens this hash



5657
5658
5659
# File 'lib/syntax_tree/node.rb', line 5657

def lbrace
  @lbrace
end

Instance Method Details

#===(other) ⇒ Object



5706
5707
5708
5709
# File 'lib/syntax_tree/node.rb', line 5706

def ===(other)
  other.is_a?(HashLiteral) && lbrace === other.lbrace &&
    ArrayMatch.call(assocs, other.assocs)
end

#accept(visitor) ⇒ Object



5672
5673
5674
# File 'lib/syntax_tree/node.rb', line 5672

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

#child_nodesObject Also known as: deconstruct



5676
5677
5678
# File 'lib/syntax_tree/node.rb', line 5676

def child_nodes
  [lbrace] + assocs
end

#copy(lbrace: nil, assocs: nil, location: nil) ⇒ Object



5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
# File 'lib/syntax_tree/node.rb', line 5680

def copy(lbrace: nil, assocs: nil, location: nil)
  node =
    HashLiteral.new(
      lbrace: lbrace || self.lbrace,
      assocs: assocs || self.assocs,
      location: location || self.location
    )

  node.comments.concat(comments.map(&:copy))
  node
end

#deconstruct_keys(_keys) ⇒ Object



5694
5695
5696
# File 'lib/syntax_tree/node.rb', line 5694

def deconstruct_keys(_keys)
  { lbrace: lbrace, assocs: assocs, location: location, comments: comments }
end

#format(q) ⇒ Object



5698
5699
5700
5701
5702
5703
5704
# File 'lib/syntax_tree/node.rb', line 5698

def format(q)
  if q.parent.is_a?(Assoc)
    format_contents(q)
  else
    q.group { format_contents(q) }
  end
end

#format_key(q, key) ⇒ Object



5711
5712
5713
# File 'lib/syntax_tree/node.rb', line 5711

def format_key(q, key)
  (@key_formatter ||= HashKeyFormatter.for(self)).format_key(q, key)
end