class SyntaxTree::ENDBlock

ENDBlock represents the use of the END keyword, which hooks into the lifecycle of the interpreter. Whatever is inside the block will get executed when the program ends.

END {
}

Interestingly, the END keyword doesn’t allow the do and end keywords for the block. Only braces are permitted.

Attributes

comments[R]
Array[ Comment | EmbDoc ]

the comments attached to this node

lbrace[R]
LBrace

the left brace that is seen after the keyword

statements[R]
Statements

the expressions to be executed

Public Class Methods

new(lbrace:, statements:, location:) click to toggle source
# File lib/syntax_tree/node.rb, line 320
def initialize(lbrace:, statements:, location:)
  @lbrace = lbrace
  @statements = statements
  @location = location
  @comments = []
end

Public Instance Methods

===(other) click to toggle source
# File lib/syntax_tree/node.rb, line 371
def ===(other)
  other.is_a?(ENDBlock) && lbrace === other.lbrace &&
    statements === other.statements
end
accept(visitor) click to toggle source
# File lib/syntax_tree/node.rb, line 327
def accept(visitor)
  visitor.visit_END(self)
end
child_nodes() click to toggle source
# File lib/syntax_tree/node.rb, line 331
def child_nodes
  [lbrace, statements]
end
Also aliased as: deconstruct
copy(lbrace: nil, statements: nil, location: nil) click to toggle source
# File lib/syntax_tree/node.rb, line 335
def copy(lbrace: nil, statements: nil, location: nil)
  node =
    ENDBlock.new(
      lbrace: lbrace || self.lbrace,
      statements: statements || self.statements,
      location: location || self.location
    )

  node.comments.concat(comments.map(&:copy))
  node
end
deconstruct()
Alias for: child_nodes
deconstruct_keys(_keys) click to toggle source
# File lib/syntax_tree/node.rb, line 349
def deconstruct_keys(_keys)
  {
    lbrace: lbrace,
    statements: statements,
    location: location,
    comments: comments
  }
end
format(q) click to toggle source
# File lib/syntax_tree/node.rb, line 358
def format(q)
  q.group do
    q.text("END ")
    q.format(lbrace)
    q.indent do
      q.breakable_space
      q.format(statements)
    end
    q.breakable_space
    q.text("}")
  end
end