class YARP::PostExecutionNode
^^^^^^^^^^^
END { foo }
Represents the use of the ‘END` keyword.
def accept(visitor)
def accept(visitor) visitor.visit_post_execution_node(self) end
def child_nodes
def child_nodes [statements] end
def closing
def closing closing_loc.slice end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { statements: statements, keyword_loc: keyword_loc, opening_loc: opening_loc, closing_loc: closing_loc, location: location } end
def initialize(statements, keyword_loc, opening_loc, closing_loc, location)
def initialize(statements, keyword_loc, opening_loc, closing_loc, location) @statements = statements @keyword_loc = keyword_loc @opening_loc = opening_loc @closing_loc = closing_loc @location = location end
def keyword
def keyword keyword_loc.slice end
def opening
def opening opening_loc.slice end