Class: SyntaxTree::HeredocEnd
Overview
HeredocEnd represents the closing declaration of a heredoc.
"contents\n"
In the example above the HeredocEnd node represents the closing DOC.
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- String
-
the closing 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: []) ⇒ HeredocEnd
constructor
A new instance of HeredocEnd.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ HeredocEnd
Returns a new instance of HeredocEnd.
4945 4946 4947 4948 4949 |
# File 'lib/syntax_tree/node.rb', line 4945 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
4943 4944 4945 |
# File 'lib/syntax_tree/node.rb', line 4943 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the closing declaration of the heredoc
4940 4941 4942 |
# File 'lib/syntax_tree/node.rb', line 4940 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
4951 4952 4953 |
# File 'lib/syntax_tree/node.rb', line 4951 def accept(visitor) visitor.visit_heredoc_end(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
4955 4956 4957 |
# File 'lib/syntax_tree/node.rb', line 4955 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
4961 4962 4963 |
# File 'lib/syntax_tree/node.rb', line 4961 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
4965 4966 4967 |
# File 'lib/syntax_tree/node.rb', line 4965 def format(q) q.text(value) end |