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 lib/prism/node.rb, line 15351 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 lib/prism/node.rb, line 15429 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 lib/prism/node.rb, line 15435 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 lib/prism/node.rb, line 15362 def accept(visitor) visitor.visit_rescue_modifier_node(self) end
def child_nodes
: () -> Array[nil | Node]
# File lib/prism/node.rb, line 15367 def child_nodes [expression, rescue_expression] end
def comment_targets
: () -> Array[Node | Location]
# File lib/prism/node.rb, line 15377 def comment_targets [expression, keyword_loc, rescue_expression] #: Array[Prism::node | Location] end
def compact_child_nodes
: () -> Array
# File lib/prism/node.rb, line 15372 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 lib/prism/node.rb, line 15382 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 lib/prism/node.rb, line 15390 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 lib/prism/node.rb, line 15419 def inspect InspectVisitor.compose(self) end
def keyword: () -> String
# File lib/prism/node.rb, line 15414 def keyword keyword_loc.slice end
attr_reader keyword_loc
: Location
# File lib/prism/node.rb, line 15398 def keyword_loc location = @keyword_loc return location if location.is_a?(Location) @keyword_loc = Location.new(source, location >> 32, location & 0xFFFFFFFF) end
Save the keyword_loc
location using the given saved source so that it can be retrieved later.
# File lib/prism/node.rb, line 15406 def save_keyword_loc(repository) repository.enter(node_id, :keyword_loc) end
Return a symbol representation of this node type. See Node#type
.
# File lib/prism/node.rb, line 15424 def type :rescue_modifier_node end