class Prism::CaseNode
Represents the use of a case statement.
case true when false end ^^^^^^^^^^
Attributes
attr_reader conditions: Array
attr_reader else_clause
: ElseNode
?
attr_reader predicate: Prism::node?
Public Class Methods
Initialize a new CaseNode
node.
# File prism/node.rb, line 3123 def initialize(source, node_id, location, flags, predicate, conditions, else_clause, case_keyword_loc, end_keyword_loc) @source = source @node_id = node_id @location = location @flags = flags @predicate = predicate @conditions = conditions @else_clause = else_clause @case_keyword_loc = case_keyword_loc @end_keyword_loc = end_keyword_loc end
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 3216 def self.type :case_node end
Public Instance Methods
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
# File prism/node.rb, line 3222 def ===(other) other.is_a?(CaseNode) && (predicate === other.predicate) && (conditions.length == other.conditions.length) && conditions.zip(other.conditions).all? { |left, right| left === right } && (else_clause === other.else_clause) && (case_keyword_loc.nil? == other.case_keyword_loc.nil?) && (end_keyword_loc.nil? == other.end_keyword_loc.nil?) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 3136 def accept(visitor) visitor.visit_case_node(self) end
def case_keyword
: () -> String
# File prism/node.rb, line 3196 def case_keyword case_keyword_loc.slice end
attr_reader case_keyword_loc
: Location
# File prism/node.rb, line 3182 def case_keyword_loc location = @case_keyword_loc return location if location.is_a?(Location) @case_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 3141 def child_nodes [predicate, *conditions, else_clause] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 3155 def comment_targets [*predicate, *conditions, *else_clause, case_keyword_loc, end_keyword_loc] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 3146 def compact_child_nodes compact = [] #: Array[Prism::node] compact << predicate if predicate compact.concat(conditions) compact << else_clause if else_clause compact end
Returns the else clause of the case node. This method is deprecated in favor of else_clause
.
# File prism/node_ext.rb, line 476 def consequent deprecated("else_clause") else_clause end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?predicate: Prism::node?, ?conditions: Array, ?else_clause: ElseNode
?, ?case_keyword_loc: Location
, ?end_keyword_loc: Location
) -> CaseNode
# File prism/node.rb, line 3160 def copy(node_id: self.node_id, location: self.location, flags: self.flags, predicate: self.predicate, conditions: self.conditions, else_clause: self.else_clause, case_keyword_loc: self.case_keyword_loc, end_keyword_loc: self.end_keyword_loc) CaseNode.new(source, node_id, location, flags, predicate, conditions, else_clause, case_keyword_loc, end_keyword_loc) end
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, predicate: Prism::node?, conditions: Array, else_clause
: ElseNode
?, case_keyword_loc
: Location
, end_keyword_loc
: Location
}
# File prism/node.rb, line 3168 def deconstruct_keys(keys) { node_id: node_id, location: location, predicate: predicate, conditions: conditions, else_clause: else_clause, case_keyword_loc: case_keyword_loc, end_keyword_loc: end_keyword_loc } end
def end_keyword
: () -> String
# File prism/node.rb, line 3201 def end_keyword end_keyword_loc.slice end
attr_reader end_keyword_loc
: Location
# File prism/node.rb, line 3189 def end_keyword_loc location = @end_keyword_loc return location if location.is_a?(Location) @end_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
def inspect -> String
# File prism/node.rb, line 3206 def inspect InspectVisitor.compose(self) end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 3211 def type :case_node end