Class: SyntaxTree::Comma
Overview
Comma represents the use of the , operator.
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
- String
-
the comma in the string.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
-
#initialize(value:, location:) ⇒ Comma
constructor
A new instance of Comma.
Methods inherited from Node
#construct_keys, #format, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:) ⇒ Comma
Returns a new instance of Comma.
2914 2915 2916 2917 |
# File 'lib/syntax_tree/node.rb', line 2914 def initialize(value:, location:) @value = value @location = location end |
Instance Attribute Details
#value ⇒ Object (readonly)
- String
-
the comma in the string
2912 2913 2914 |
# File 'lib/syntax_tree/node.rb', line 2912 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
2919 2920 2921 |
# File 'lib/syntax_tree/node.rb', line 2919 def accept(visitor) visitor.visit_comma(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
2923 2924 2925 |
# File 'lib/syntax_tree/node.rb', line 2923 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
2929 2930 2931 |
# File 'lib/syntax_tree/node.rb', line 2929 def deconstruct_keys(_keys) { value: value, location: location } end |