class YARP::EnsureNode
end
bar
^^^^^^
ensure
foo
begin
Represents an ‘ensure` clause in a `begin` statement.
def accept(visitor)
def accept(visitor) visitor.visit_ensure_node(self) end
def child_nodes
def child_nodes [statements] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { ensure_keyword_loc: ensure_keyword_loc, statements: statements, end_keyword_loc: end_keyword_loc, location: location } end
def end_keyword
def end_keyword end_keyword_loc.slice end
def ensure_keyword
def ensure_keyword ensure_keyword_loc.slice end
def initialize(ensure_keyword_loc, statements, end_keyword_loc, location)
def initialize(ensure_keyword_loc, statements, end_keyword_loc, location) @ensure_keyword_loc = ensure_keyword_loc @statements = statements @end_keyword_loc = end_keyword_loc @location = location end