Class: Prism::RescueNode

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

Overview

Represents a rescue statement.

begin
rescue Foo, *splat, Bar => ex
  foo
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
end

‘Foo, *splat, Bar` are in the `exceptions` field. `ex` is in the `reference` field.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, node_id, location, flags, keyword_loc, exceptions, operator_loc, reference, then_keyword_loc, statements, subsequent) ⇒ RescueNode

Initialize a new RescueNode node.



15926
15927
15928
15929
15930
15931
15932
15933
15934
15935
15936
15937
15938
# File 'lib/prism/node.rb', line 15926

def initialize(source, node_id, location, flags, keyword_loc, exceptions, operator_loc, reference, then_keyword_loc, statements, subsequent)
  @source = source
  @node_id = node_id
  @location = location
  @flags = flags
  @keyword_loc = keyword_loc
  @exceptions = exceptions
  @operator_loc = operator_loc
  @reference = reference
  @then_keyword_loc = then_keyword_loc
  @statements = statements
  @subsequent = subsequent
end

Instance Attribute Details

#exceptionsObject (readonly)

attr_reader exceptions: Array



15992
15993
15994
# File 'lib/prism/node.rb', line 15992

def exceptions
  @exceptions
end

#referenceObject (readonly)

attr_reader reference: LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | BackReferenceReadNode | NumberedReferenceReadNode | MissingNode | nil



16014
16015
16016
# File 'lib/prism/node.rb', line 16014

def reference
  @reference
end

#statementsObject (readonly)

attr_reader statements: StatementsNode?



16036
16037
16038
# File 'lib/prism/node.rb', line 16036

def statements
  @statements
end

#subsequentObject (readonly)

attr_reader subsequent: RescueNode?



16039
16040
16041
# File 'lib/prism/node.rb', line 16039

def subsequent
  @subsequent
end

Class Method Details

.typeObject

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



16067
16068
16069
# File 'lib/prism/node.rb', line 16067

def self.type
  :rescue_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.



16073
16074
16075
16076
16077
16078
16079
16080
16081
16082
16083
# File 'lib/prism/node.rb', line 16073

def ===(other)
  other.is_a?(RescueNode) &&
    (keyword_loc.nil? == other.keyword_loc.nil?) &&
    (exceptions.length == other.exceptions.length) &&
    exceptions.zip(other.exceptions).all? { |left, right| left === right } &&
    (operator_loc.nil? == other.operator_loc.nil?) &&
    (reference === other.reference) &&
    (then_keyword_loc.nil? == other.then_keyword_loc.nil?) &&
    (statements === other.statements) &&
    (subsequent === other.subsequent)
end

#accept(visitor) ⇒ Object

def accept: (Visitor visitor) -> void



15941
15942
15943
# File 'lib/prism/node.rb', line 15941

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

#child_nodesObject Also known as: deconstruct

def child_nodes: () -> Array



15946
15947
15948
# File 'lib/prism/node.rb', line 15946

def child_nodes
  [*exceptions, reference, statements, subsequent]
end

#comment_targetsObject

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



15961
15962
15963
# File 'lib/prism/node.rb', line 15961

def comment_targets
  [keyword_loc, *exceptions, *operator_loc, *reference, *then_keyword_loc, *statements, *subsequent] #: Array[Prism::node | Location]
end

#compact_child_nodesObject

def compact_child_nodes: () -> Array



15951
15952
15953
15954
15955
15956
15957
15958
# File 'lib/prism/node.rb', line 15951

def compact_child_nodes
  compact = [] #: Array[Prism::node]
  compact.concat(exceptions)
  compact << reference if reference
  compact << statements if statements
  compact << subsequent if subsequent
  compact
end

#consequentObject

Returns the subsequent rescue clause of the rescue node. This method is deprecated in favor of #subsequent.



497
498
499
500
# File 'lib/prism/node_ext.rb', line 497

def consequent
  deprecated("subsequent")
  subsequent
end

#copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, exceptions: self.exceptions, operator_loc: self.operator_loc, reference: self.reference, then_keyword_loc: self.then_keyword_loc, statements: self.statements, subsequent: self.subsequent) ⇒ Object

def copy: (?node_id: Integer, ?location: Location, ?flags: Integer, ?keyword_loc: Location, ?exceptions: Array, ?operator_loc: Location?, ?reference: LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | BackReferenceReadNode | NumberedReferenceReadNode | MissingNode | nil, ?then_keyword_loc: Location?, ?statements: StatementsNode?, ?subsequent: RescueNode?) -> RescueNode



15966
15967
15968
# File 'lib/prism/node.rb', line 15966

def copy(node_id: self.node_id, location: self.location, flags: self.flags, keyword_loc: self.keyword_loc, exceptions: self.exceptions, operator_loc: self.operator_loc, reference: self.reference, then_keyword_loc: self.then_keyword_loc, statements: self.statements, subsequent: self.subsequent)
  RescueNode.new(source, node_id, location, flags, keyword_loc, exceptions, operator_loc, reference, then_keyword_loc, statements, subsequent)
end

#deconstruct_keys(keys) ⇒ Object

def deconstruct_keys: (Array keys) -> { node_id: Integer, location: Location, keyword_loc: Location, exceptions: Array, operator_loc: Location?, reference: LocalVariableTargetNode | InstanceVariableTargetNode | ClassVariableTargetNode | GlobalVariableTargetNode | ConstantTargetNode | ConstantPathTargetNode | CallTargetNode | IndexTargetNode | BackReferenceReadNode | NumberedReferenceReadNode | MissingNode | nil, then_keyword_loc: Location?, statements: StatementsNode?, subsequent: RescueNode? }



15974
15975
15976
# File 'lib/prism/node.rb', line 15974

def deconstruct_keys(keys)
  { node_id: node_id, location: location, keyword_loc: keyword_loc, exceptions: exceptions, operator_loc: operator_loc, reference: reference, then_keyword_loc: then_keyword_loc, statements: statements, subsequent: subsequent }
end

#inspectObject

def inspect -> String



16057
16058
16059
# File 'lib/prism/node.rb', line 16057

def inspect
  InspectVisitor.compose(self)
end

#keywordObject

def keyword: () -> String



16042
16043
16044
# File 'lib/prism/node.rb', line 16042

def keyword
  keyword_loc.slice
end

#keyword_locObject

attr_reader keyword_loc: Location



15979
15980
15981
15982
15983
# File 'lib/prism/node.rb', line 15979

def keyword_loc
  location = @keyword_loc
  return location if location.is_a?(Location)
  @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
end

#operatorObject

def operator: () -> String?



16047
16048
16049
# File 'lib/prism/node.rb', line 16047

def operator
  operator_loc&.slice
end

#operator_locObject

attr_reader operator_loc: Location?



15995
15996
15997
15998
15999
16000
16001
16002
16003
16004
16005
# File 'lib/prism/node.rb', line 15995

def operator_loc
  location = @operator_loc
  case location
  when nil
    nil
  when Location
    location
  else
    @operator_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF)
  end
end

#save_keyword_loc(repository) ⇒ Object

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



15987
15988
15989
# File 'lib/prism/node.rb', line 15987

def save_keyword_loc(repository)
  repository.enter(node_id, :keyword_loc)
end

#save_operator_loc(repository) ⇒ Object

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



16009
16010
16011
# File 'lib/prism/node.rb', line 16009

def save_operator_loc(repository)
  repository.enter(node_id, :operator_loc) unless @operator_loc.nil?
end

#save_then_keyword_loc(repository) ⇒ Object

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



16031
16032
16033
# File 'lib/prism/node.rb', line 16031

def save_then_keyword_loc(repository)
  repository.enter(node_id, :then_keyword_loc) unless @then_keyword_loc.nil?
end

#then_keywordObject

def then_keyword: () -> String?



16052
16053
16054
# File 'lib/prism/node.rb', line 16052

def then_keyword
  then_keyword_loc&.slice
end

#then_keyword_locObject

attr_reader then_keyword_loc: Location?



16017
16018
16019
16020
16021
16022
16023
16024
16025
16026
16027
# File 'lib/prism/node.rb', line 16017

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

#typeObject

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



16062
16063
16064
# File 'lib/prism/node.rb', line 16062

def type
  :rescue_node
end