Class: SyntaxTree::Assoc
Overview
Assoc represents a key-value pair within a hash. It is a child node of either an AssocListFromArgs or a BareAssocHash.
{ key1: value1, key2: value2 }
In the above example, the would be two AssocNew nodes.
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#key ⇒ Object
readonly
- untyped
-
the key of this pair.
-
#value ⇒ Object
readonly
- untyped
-
the value of this pair.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(key:, value:, location:, comments: []) ⇒ Assoc
constructor
A new instance of Assoc.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(key:, value:, location:, comments: []) ⇒ Assoc
Returns a new instance of Assoc.
1228 1229 1230 1231 1232 1233 |
# File 'lib/syntax_tree/node.rb', line 1228 def initialize(key:, value:, location:, comments: []) @key = key @value = value @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
1226 1227 1228 |
# File 'lib/syntax_tree/node.rb', line 1226 def comments @comments end |
#key ⇒ Object (readonly)
- untyped
-
the key of this pair
1220 1221 1222 |
# File 'lib/syntax_tree/node.rb', line 1220 def key @key end |
#value ⇒ Object (readonly)
- untyped
-
the value of this pair
1223 1224 1225 |
# File 'lib/syntax_tree/node.rb', line 1223 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
1235 1236 1237 |
# File 'lib/syntax_tree/node.rb', line 1235 def accept(visitor) visitor.visit_assoc(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
1239 1240 1241 |
# File 'lib/syntax_tree/node.rb', line 1239 def child_nodes [key, value] end |
#deconstruct_keys(_keys) ⇒ Object
1245 1246 1247 |
# File 'lib/syntax_tree/node.rb', line 1245 def deconstruct_keys(_keys) { key: key, value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
1249 1250 1251 1252 1253 1254 1255 |
# File 'lib/syntax_tree/node.rb', line 1249 def format(q) if value.is_a?(HashLiteral) format_contents(q) else q.group { format_contents(q) } end end |