class YARP::ElseNode
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/yarp/node.rbs class YARP::ElseNode < YARP::Node def accept: (Analyzer::Visitor visitor) -> untyped def child_nodes: () -> untyped def initialize: (YARP::Location else_keyword_loc, YARP::StatementsNode statements, YARP::Location? end_keyword_loc, YARP::Location location) -> void end
^^^^^^^^^^
if a then b else c end
Represents an ‘else` clause in a `case`, `if`, or `unless` statement.
def accept(visitor)
Experimental RBS support (using type sampling data from the type_fusion
project).
def accept: (Analyzer::Visitor visitor) -> untyped
This signature was generated using 16 samples from 1 application.
def accept(visitor) visitor.visit_else_node(self) end
def child_nodes
Experimental RBS support (using type sampling data from the type_fusion
project).
def child_nodes: () -> untyped
This signature was generated using 8 samples from 1 application.
def child_nodes [statements] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { else_keyword_loc: else_keyword_loc, statements: statements, end_keyword_loc: end_keyword_loc, location: location } end
def else_keyword
def else_keyword else_keyword_loc.slice end
def end_keyword
def end_keyword end_keyword_loc&.slice end
def initialize(else_keyword_loc, statements, end_keyword_loc, location)
Experimental RBS support (using type sampling data from the type_fusion
project).
def initialize: (YARP::Location else_keyword_loc, YARP::StatementsNode statements, YARP::Location? end_keyword_loc, YARP::Location location) -> void
This signature was generated using 11 samples from 1 application.
def initialize(else_keyword_loc, statements, end_keyword_loc, location) @else_keyword_loc = else_keyword_loc @statements = statements @end_keyword_loc = end_keyword_loc @location = location end