Class: SyntaxTree::HashLiteral
Overview
HashLiteral represents a hash literal.
{ key => value }
Defined Under Namespace
Classes: EmptyWithCommentsFormatter
Instance Attribute Summary collapse
-
#assocs ⇒ Object
readonly
- Array[ AssocNew | AssocSplat ]
-
the optional contents of the hash.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#lbrace ⇒ Object
readonly
- LBrace
-
the left brace that opens this hash.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
- #format_key(q, key) ⇒ Object
-
#initialize(lbrace:, assocs:, location:, comments: []) ⇒ HashLiteral
constructor
A new instance of HashLiteral.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(lbrace:, assocs:, location:, comments: []) ⇒ HashLiteral
Returns a new instance of HashLiteral.
4741 4742 4743 4744 4745 4746 |
# File 'lib/syntax_tree/node.rb', line 4741 def initialize(lbrace:, assocs:, location:, comments: []) @lbrace = lbrace @assocs = assocs @location = location @comments = comments end |
Instance Attribute Details
#assocs ⇒ Object (readonly)
- Array[ AssocNew | AssocSplat ]
-
the optional contents of the hash
4736 4737 4738 |
# File 'lib/syntax_tree/node.rb', line 4736 def assocs @assocs end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
4739 4740 4741 |
# File 'lib/syntax_tree/node.rb', line 4739 def comments @comments end |
#lbrace ⇒ Object (readonly)
- LBrace
-
the left brace that opens this hash
4733 4734 4735 |
# File 'lib/syntax_tree/node.rb', line 4733 def lbrace @lbrace end |
Instance Method Details
#accept(visitor) ⇒ Object
4748 4749 4750 |
# File 'lib/syntax_tree/node.rb', line 4748 def accept(visitor) visitor.visit_hash(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
4752 4753 4754 |
# File 'lib/syntax_tree/node.rb', line 4752 def child_nodes [lbrace] + assocs end |
#deconstruct_keys(_keys) ⇒ Object
4758 4759 4760 |
# File 'lib/syntax_tree/node.rb', line 4758 def deconstruct_keys(_keys) { lbrace: lbrace, assocs: assocs, location: location, comments: comments } end |
#format(q) ⇒ Object
4762 4763 4764 4765 4766 4767 4768 |
# File 'lib/syntax_tree/node.rb', line 4762 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
4770 4771 4772 |
# File 'lib/syntax_tree/node.rb', line 4770 def format_key(q, key) (@key_formatter ||= HashKeyFormatter.for(self)).format_key(q, key) end |