Class: SyntaxTree::HeredocBeg
Overview
HeredocBeg represents the beginning declaration of a heredoc.
<<~DOC
contents
DOC
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
Returns a new instance of HeredocBeg.
4906 4907 4908 4909 4910 |
# File 'lib/syntax_tree/node.rb', line 4906 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
4904 4905 4906 |
# File 'lib/syntax_tree/node.rb', line 4904 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the opening declaration of the heredoc
4901 4902 4903 |
# File 'lib/syntax_tree/node.rb', line 4901 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
4912 4913 4914 |
# File 'lib/syntax_tree/node.rb', line 4912 def accept(visitor) visitor.visit_heredoc_beg(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
4916 4917 4918 |
# File 'lib/syntax_tree/node.rb', line 4916 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
4922 4923 4924 |
# File 'lib/syntax_tree/node.rb', line 4922 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
4926 4927 4928 |
# File 'lib/syntax_tree/node.rb', line 4926 def format(q) q.text(value) end |