class Prism::ElseNode
Represents an ‘else` clause in a `case`, `if`, or `unless` statement.
if a then b else c end ^^^^^^^^^^
Attributes
attr_reader statements: StatementsNode
?
Public Class Methods
Initialize a new ElseNode
node.
# File prism/node.rb, line 5487 def initialize(source, node_id, location, flags, else_keyword_loc, statements, end_keyword_loc) @source = source @node_id = node_id @location = location @flags = flags @else_keyword_loc = else_keyword_loc @statements = statements @end_keyword_loc = end_keyword_loc end
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 5576 def self.type :else_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 5582 def ===(other) other.is_a?(ElseNode) && (else_keyword_loc.nil? == other.else_keyword_loc.nil?) && (statements === other.statements) && (end_keyword_loc.nil? == other.end_keyword_loc.nil?) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 5498 def accept(visitor) visitor.visit_else_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 5503 def child_nodes [statements] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 5515 def comment_targets [else_keyword_loc, *statements, *end_keyword_loc] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 5508 def compact_child_nodes compact = [] #: Array[Prism::node] compact << statements if statements compact end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?else_keyword_loc: Location
, ?statements: StatementsNode
?, ?end_keyword_loc: Location
?) -> ElseNode
# File prism/node.rb, line 5520 def copy(node_id: self.node_id, location: self.location, flags: self.flags, else_keyword_loc: self.else_keyword_loc, statements: self.statements, end_keyword_loc: self.end_keyword_loc) ElseNode.new(source, node_id, location, flags, else_keyword_loc, statements, end_keyword_loc) end
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, else_keyword_loc
: Location
, statements: StatementsNode
?, end_keyword_loc
: Location
? }
# File prism/node.rb, line 5528 def deconstruct_keys(keys) { node_id: node_id, location: location, else_keyword_loc: else_keyword_loc, statements: statements, end_keyword_loc: end_keyword_loc } end
def else_keyword
: () -> String
# File prism/node.rb, line 5556 def else_keyword else_keyword_loc.slice end
attr_reader else_keyword_loc
: Location
# File prism/node.rb, line 5533 def else_keyword_loc location = @else_keyword_loc return location if location.is_a?(Location) @else_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
def end_keyword
: () -> String?
# File prism/node.rb, line 5561 def end_keyword end_keyword_loc&.slice end
attr_reader end_keyword_loc
: Location
?
# File prism/node.rb, line 5543 def end_keyword_loc location = @end_keyword_loc case location when nil nil when Location location else @end_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
def inspect -> String
# File prism/node.rb, line 5566 def inspect InspectVisitor.compose(self) end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 5571 def type :else_node end