class YARP::EnsureNode

Experimental RBS support (using type sampling data from the type_fusion project).

# sig/yarp/node.rbs

class YARP::EnsureNode < YARP::Node
  def accept: (Analyzer::Visitor visitor) -> Array[Array, Array, Array, ]
  def child_nodes: () -> Array[YARP::StatementsNode]
end

end
bar
^^^^^^
ensure
foo
begin
Represents an ‘ensure` clause in a `begin` statement.

def accept(visitor)

Experimental RBS support (using type sampling data from the type_fusion project).

def accept: (Analyzer::Visitor visitor) ->

This signature was generated using 4 samples from 1 application.

def accept: (visitor: Visitor) -> void
def accept(visitor)
  visitor.visit_ensure_node(self)
end

def child_nodes

Experimental RBS support (using type sampling data from the type_fusion project).

def child_nodes: () ->

This signature was generated using 3 samples from 1 application.

def child_nodes: () -> Array[nil | Node]
def child_nodes
  [statements]
end

def deconstruct_keys(keys)

def deconstruct_keys: (keys: Array[Symbol]) -> Hash[Symbol, nil | Node | Array[Node] | String | Token | Array[Token] | Location]
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: () -> String
def end_keyword
  end_keyword_loc.slice
end

def ensure_keyword

def ensure_keyword: () -> String
def ensure_keyword
  ensure_keyword_loc.slice
end

def initialize(ensure_keyword_loc, statements, end_keyword_loc, location)

def initialize: (ensure_keyword_loc: Location, statements: Node?, end_keyword_loc: Location, location: Location) -> void
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