class Prism::WhenNode
Represents the use of the ‘when` keyword within a case statement.
case true when true ^^^^^^^^^ end
Attributes
attr_reader conditions: Array
attr_reader statements: StatementsNode
?
Public Class Methods
Source
# File lib/prism/node.rb, line 17567 def initialize(source, node_id, location, flags, keyword_loc, conditions, then_keyword_loc, statements) @source = source @node_id = node_id @location = location @flags = flags @keyword_loc = keyword_loc @conditions = conditions @then_keyword_loc = then_keyword_loc @statements = statements end
Initialize a new WhenNode
node.
Source
# File lib/prism/node.rb, line 17673 def self.type :when_node end
Return a symbol representation of this node type. See ‘Node::type`.
Public Instance Methods
Source
# File lib/prism/node.rb, line 17679 def ===(other) other.is_a?(WhenNode) && (keyword_loc.nil? == other.keyword_loc.nil?) && (conditions.length == other.conditions.length) && conditions.zip(other.conditions).all? { |left, right| left === right } && (then_keyword_loc.nil? == other.then_keyword_loc.nil?) && (statements === other.statements) end
Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.
Source
# File lib/prism/node.rb, line 17579 def accept(visitor) visitor.visit_when_node(self) end
def accept: (Visitor
visitor) -> void
Source
# File lib/prism/node.rb, line 17584 def child_nodes [*conditions, statements] end
def child_nodes
: () -> Array[nil | Node]
Source
# File lib/prism/node.rb, line 17597 def comment_targets [keyword_loc, *conditions, *then_keyword_loc, *statements] #: Array[Prism::node | Location] end
def comment_targets
: () -> Array[Node | Location]
Source
# File lib/prism/node.rb, line 17589 def compact_child_nodes compact = [] #: Array[Prism::node] compact.concat(conditions) compact << statements if statements compact end
def compact_child_nodes
: () -> Array
Source
# File lib/prism/node.rb, line 17602 def copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, conditions: self.conditions, then_keyword_loc: self.then_keyword_loc, statements: self.statements) WhenNode.new(source, node_id, location, flags, keyword_loc, conditions, then_keyword_loc, statements) end
def copy: (?node_id: Integer
, ?location: Location
, ?flags: Integer
, ?keyword_loc: Location
, ?conditions: Array, ?then_keyword_loc: Location
?, ?statements: StatementsNode
?) -> WhenNode
Source
# File lib/prism/node.rb, line 17610 def deconstruct_keys(keys) { node_id: node_id, location: location, keyword_loc: keyword_loc, conditions: conditions, then_keyword_loc: then_keyword_loc, statements: statements } end
def deconstruct_keys
: (Array keys) -> { node_id: Integer
, location: Location
, keyword_loc
: Location
, conditions: Array, then_keyword_loc
: Location
?, statements: StatementsNode
? }
Source
# File lib/prism/node.rb, line 17663 def inspect InspectVisitor.compose(self) end
def inspect -> String
Source
# File lib/prism/node.rb, line 17653 def keyword keyword_loc.slice end
def keyword: () -> String
Source
# File lib/prism/node.rb, line 17615 def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
attr_reader keyword_loc
: Location
Source
# File lib/prism/node.rb, line 17623 def save_keyword_loc(repository) repository.enter(node_id, :keyword_loc) end
Save the keyword_loc
location using the given saved source so that it can be retrieved later.
Source
# File lib/prism/node.rb, line 17645 def save_then_keyword_loc(repository) repository.enter(node_id, :then_keyword_loc) unless @then_keyword_loc.nil? end
Save the then_keyword_loc
location using the given saved source so that it can be retrieved later.
Source
# File lib/prism/node.rb, line 17658 def then_keyword then_keyword_loc&.slice end
def then_keyword
: () -> String
?
Source
# File lib/prism/node.rb, line 17631 def then_keyword_loc location = @then_keyword_loc case location when nil nil when Location location else @then_keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end end
attr_reader then_keyword_loc
: Location
?
Source
# File lib/prism/node.rb, line 17668 def type :when_node end
Return a symbol representation of this node type. See ‘Node#type`.