Class: SyntaxTree::HeredocBeg
Overview
HeredocBeg represents the beginning declaration of a heredoc.
"contents\n"
In the example above the HeredocBeg node represents <<~DOC.
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- String
-
the opening declaration of the heredoc.
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: []) ⇒ HeredocBeg
constructor
A new instance of HeredocBeg.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ HeredocBeg
5067 5068 5069 5070 5071 |
# File 'lib/syntax_tree/node.rb', line 5067 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
5065 5066 5067 |
# File 'lib/syntax_tree/node.rb', line 5065 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the opening declaration of the heredoc
5062 5063 5064 |
# File 'lib/syntax_tree/node.rb', line 5062 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
5073 5074 5075 |
# File 'lib/syntax_tree/node.rb', line 5073 def accept(visitor) visitor.visit_heredoc_beg(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
5077 5078 5079 |
# File 'lib/syntax_tree/node.rb', line 5077 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
5083 5084 5085 |
# File 'lib/syntax_tree/node.rb', line 5083 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
5087 5088 5089 |
# File 'lib/syntax_tree/node.rb', line 5087 def format(q) q.text(value) end |