Class: SyntaxTree::Period
Overview
Period represents the use of the . operator. It is usually found in method calls.
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- String
-
the period.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(value:, location:, comments: []) ⇒ Period
constructor
A new instance of Period.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ Period
Returns a new instance of Period.
7052 7053 7054 7055 7056 |
# File 'lib/syntax_tree/node.rb', line 7052 def initialize(value:, location:, comments: []) @value = value @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
7050 7051 7052 |
# File 'lib/syntax_tree/node.rb', line 7050 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the period
7047 7048 7049 |
# File 'lib/syntax_tree/node.rb', line 7047 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
7058 7059 7060 |
# File 'lib/syntax_tree/node.rb', line 7058 def accept(visitor) visitor.visit_period(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7062 7063 7064 |
# File 'lib/syntax_tree/node.rb', line 7062 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
7068 7069 7070 |
# File 'lib/syntax_tree/node.rb', line 7068 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
7072 7073 7074 |
# File 'lib/syntax_tree/node.rb', line 7072 def format(q) q.text(value) end |