class YARP::CaseNode
end
when false
^^^^^^^^^
case true
Represents the use of a case statement.
def accept(visitor)
def accept(visitor) visitor.visit_case_node(self) end
def case_keyword
def case_keyword case_keyword_loc.slice end
def child_nodes
def child_nodes [predicate, *conditions, consequent] end
def deconstruct_keys(keys)
def deconstruct_keys(keys) { predicate: predicate, conditions: conditions, consequent: consequent, case_keyword_loc: case_keyword_loc, end_keyword_loc: end_keyword_loc, location: location } end
def end_keyword
def end_keyword end_keyword_loc.slice end
def initialize(predicate, conditions, consequent, case_keyword_loc, end_keyword_loc, location)
def initialize(predicate, conditions, consequent, case_keyword_loc, end_keyword_loc, location) @predicate = predicate @conditions = conditions @consequent = consequent @case_keyword_loc = case_keyword_loc @end_keyword_loc = end_keyword_loc @location = location end