Class: SyntaxTree::HeredocEnd

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

HeredocEnd represents the closing declaration of a heredoc.

<<~DOC
  contents
DOC

In the example above the HeredocEnd node represents the closing DOC.

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(value:, location:, comments: []) ⇒ HeredocEnd

Returns a new instance of HeredocEnd.



4946
4947
4948
4949
4950
# File 'lib/syntax_tree/node.rb', line 4946

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



4944
4945
4946
# File 'lib/syntax_tree/node.rb', line 4944

def comments
  @comments
end

#valueObject (readonly)

String

the closing declaration of the heredoc



4941
4942
4943
# File 'lib/syntax_tree/node.rb', line 4941

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



4952
4953
4954
# File 'lib/syntax_tree/node.rb', line 4952

def accept(visitor)
  visitor.visit_heredoc_end(self)
end

#child_nodesObject Also known as: deconstruct



4956
4957
4958
# File 'lib/syntax_tree/node.rb', line 4956

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



4962
4963
4964
# File 'lib/syntax_tree/node.rb', line 4962

def deconstruct_keys(_keys)
  { value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



4966
4967
4968
# File 'lib/syntax_tree/node.rb', line 4966

def format(q)
  q.text(value)
end