class Prism::RescueModifierNode
Represents an expression modified with a rescue.
foo rescue nil ^^^^^^^^^^^^^^
Attributes
attr_reader expression: Prism::node
attr_reader rescue_expression
: Prism::node
Public Class Methods
Initialize a new RescueModifierNode
node.
# File prism/node.rb, line 14128 def initialize(source, node_id, location, flags, expression, keyword_loc, rescue_expression) @source = source @node_id = node_id @location = location @flags = flags @expression = expression @keyword_loc = keyword_loc @rescue_expression = rescue_expression end
Return a symbol representation of this node type. See ‘Node::type`.
# File prism/node.rb, line 14200 def self.type :rescue_modifier_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 14206 def ===(other) other.is_a?(RescueModifierNode) && (expression === other.expression) && (keyword_loc.nil? == other.keyword_loc.nil?) && (rescue_expression === other.rescue_expression) end
def accept: (Visitor
visitor) -> void
# File prism/node.rb, line 14139 def accept(visitor) visitor.visit_rescue_modifier_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File prism/node.rb, line 14144 def child_nodes [expression, rescue_expression] end
def comment_targets
: () -> Array[Node | Location]
# File prism/node.rb, line 14154 def comment_targets [expression, keyword_loc, rescue_expression] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File prism/node.rb, line 14149 def compact_child_nodes [expression, rescue_expression] end
def copy: (?node_id: Integer, ?location: Location
, ?flags: Integer, ?expression: Prism::node, ?keyword_loc: Location
, ?rescue_expression: Prism::node) -> RescueModifierNode
# File prism/node.rb, line 14159 def copy(node_id: self.node_id, location: self.location, flags: self.flags, expression: self.expression, keyword_loc: self.keyword_loc, rescue_expression: self.rescue_expression) RescueModifierNode.new(source, node_id, location, flags, expression, keyword_loc, rescue_expression) end
def deconstruct_keys
: (Array keys) -> { node_id: Integer, location: Location
, expression: Prism::node, keyword_loc
: Location
, rescue_expression
: Prism::node }
# File prism/node.rb, line 14167 def deconstruct_keys(keys) { node_id: node_id, location: location, expression: expression, keyword_loc: keyword_loc, rescue_expression: rescue_expression } end
def inspect -> String
# File prism/node.rb, line 14190 def inspect InspectVisitor.compose(self) end
def keyword: () -> String
# File prism/node.rb, line 14185 def keyword keyword_loc.slice end
attr_reader keyword_loc
: Location
# File prism/node.rb, line 14175 def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Return a symbol representation of this node type. See ‘Node#type`.
# File prism/node.rb, line 14195 def type :rescue_modifier_node end