class SyntaxTree::HeredocEnd
HeredocEnd
represents the closing declaration of a heredoc.
<<~DOC contents DOC
In
the example above the HeredocEnd
node represents the closing DOC.
Attributes
value[R]
- String
-
the closing declaration of the heredoc
Public Class Methods
new(value:, location:)
click to toggle source
# File lib/syntax_tree/node.rb, line 5947 def initialize(value:, location:) @value = value @location = location @comments = [] end
Public Instance Methods
===(other)
click to toggle source
# File lib/syntax_tree/node.rb, line 5982 def ===(other) other.is_a?(HeredocEnd) && value === other.value end
accept(visitor)
click to toggle source
# File lib/syntax_tree/node.rb, line 5953 def accept(visitor) visitor.visit_heredoc_end(self) end
child_nodes()
click to toggle source
# File lib/syntax_tree/node.rb, line 5957 def child_nodes [] end
Also aliased as: deconstruct
copy(value: nil, location: nil)
click to toggle source
# File lib/syntax_tree/node.rb, line 5961 def copy(value: nil, location: nil) node = HeredocEnd.new( value: value || self.value, location: location || self.location ) node.comments.concat(comments.map(&:copy)) node end
deconstruct_keys(_keys)
click to toggle source
# File lib/syntax_tree/node.rb, line 5974 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end
format(q)
click to toggle source
# File lib/syntax_tree/node.rb, line 5978 def format(q) q.text(value) end