Class: Prism::CaseMatchNode

Inherits:
PrismNode
  • Object
show all
Defined in:
lib/prism/node.rb,
lib/prism/node_ext.rb,
ext/prism/api_node.c

Overview

Represents the use of a case statement for pattern matching.

case true
in false
end
^^^^^^^^^

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, predicate, conditions, else_clause, case_keyword_loc, end_keyword_loc) ⇒ CaseMatchNode

Initialize a new CaseMatchNode node.



3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
# File 'lib/prism/node.rb', line 3526

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

Instance Attribute Details

#conditionsObject (readonly)

Represents the conditions of the case match.

case true; in false; end
           ^^^^^^^^


3585
3586
3587
# File 'lib/prism/node.rb', line 3585

def conditions
  @conditions
end

#else_clauseObject (readonly)

Represents the else clause of the case match.

case true; in false; else; end
                     ^^^^


3591
3592
3593
# File 'lib/prism/node.rb', line 3591

def else_clause
  @else_clause
end

#predicateObject (readonly)

Represents the predicate of the case match. This can be either ‘nil` or any [non-void expressions](github.com/ruby/prism/blob/main/docs/parsing_rules.md#non-void-expression).

case true; in false; end
^^^^


3579
3580
3581
# File 'lib/prism/node.rb', line 3579

def predicate
  @predicate
end

Class Method Details

.typeObject

Return a symbol representation of this node type. See ‘Node::type`.



3646
3647
3648
# File 'lib/prism/node.rb', line 3646

def self.type
  :case_match_node
end

Instance Method Details

#===(other) ⇒ Object

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.



3652
3653
3654
3655
3656
3657
3658
3659
3660
# File 'lib/prism/node.rb', line 3652

def ===(other)
  other.is_a?(CaseMatchNode) &&
    (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

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



3539
3540
3541
# File 'lib/prism/node.rb', line 3539

def accept(visitor)
  visitor.visit_case_match_node(self)
end

#case_keywordObject

def case_keyword: () -> String



3626
3627
3628
# File 'lib/prism/node.rb', line 3626

def case_keyword
  case_keyword_loc.slice
end

#case_keyword_locObject

Represents the location of the ‘case` keyword.

case true; in false; end
^^^^


3597
3598
3599
3600
3601
# File 'lib/prism/node.rb', line 3597

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array[nil | Node]



3544
3545
3546
# File 'lib/prism/node.rb', line 3544

def child_nodes
  [predicate, *conditions, else_clause]
end

#comment_targetsObject

def comment_targets: () -> Array[Node | Location]



3558
3559
3560
# File 'lib/prism/node.rb', line 3558

def comment_targets
  [*predicate, *conditions, *else_clause, case_keyword_loc, end_keyword_loc] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



3549
3550
3551
3552
3553
3554
3555
# File 'lib/prism/node.rb', line 3549

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact << predicate if predicate
  compact.concat(conditions)
  compact << else_clause if else_clause
  compact
end

#consequentObject

Returns the else clause of the case match node. This method is deprecated in favor of #else_clause.



467
468
469
470
# File 'lib/prism/node_ext.rb', line 467

def consequent
  deprecated("else_clause")
  else_clause
end

#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) ⇒ Object

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) -> CaseMatchNode



3563
3564
3565
# File 'lib/prism/node.rb', line 3563

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)
  CaseMatchNode.new(source, node_id, location, flags, predicate, conditions, else_clause, case_keyword_loc, end_keyword_loc)
end

#deconstruct_keys(keys) ⇒ Object

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 }



3571
3572
3573
# File 'lib/prism/node.rb', line 3571

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

#end_keywordObject

def end_keyword: () -> String



3631
3632
3633
# File 'lib/prism/node.rb', line 3631

def end_keyword
  end_keyword_loc.slice
end

#end_keyword_locObject

Represents the location of the ‘end` keyword.

case true; in false; end
                     ^^^


3613
3614
3615
3616
3617
# File 'lib/prism/node.rb', line 3613

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

#inspectObject

def inspect -> String



3636
3637
3638
# File 'lib/prism/node.rb', line 3636

def inspect
  InspectVisitor.compose(self)
end

#save_case_keyword_loc(repository) ⇒ Object

Save the case_keyword_loc location using the given saved source so that it can be retrieved later.



3605
3606
3607
# File 'lib/prism/node.rb', line 3605

def save_case_keyword_loc(repository)
  repository.enter(node_id, :case_keyword_loc)
end

#save_end_keyword_loc(repository) ⇒ Object

Save the end_keyword_loc location using the given saved source so that it can be retrieved later.



3621
3622
3623
# File 'lib/prism/node.rb', line 3621

def save_end_keyword_loc(repository)
  repository.enter(node_id, :end_keyword_loc)
end

#typeObject

Return a symbol representation of this node type. See ‘Node#type`.



3641
3642
3643
# File 'lib/prism/node.rb', line 3641

def type
  :case_match_node
end