Class: SyntaxTree::RescueEx

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

RescueEx represents the list of exceptions being rescued in a rescue clause.

begin
rescue Exception => exception
end

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(exceptions:, variable:, location:, comments: []) ⇒ RescueEx

Returns a new instance of RescueEx.



7548
7549
7550
7551
7552
7553
# File 'lib/syntax_tree/node.rb', line 7548

def initialize(exceptions:, variable:, location:, comments: [])
  @exceptions = exceptions
  @variable = variable
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



7546
7547
7548
# File 'lib/syntax_tree/node.rb', line 7546

def comments
  @comments
end

#exceptionsObject (readonly)

untyped

the list of exceptions being rescued



7539
7540
7541
# File 'lib/syntax_tree/node.rb', line 7539

def exceptions
  @exceptions
end

#variableObject (readonly)

nil | Field | VarField

the expression being used to capture the raised

exception



7543
7544
7545
# File 'lib/syntax_tree/node.rb', line 7543

def variable
  @variable
end

Instance Method Details

#accept(visitor) ⇒ Object



7555
7556
7557
# File 'lib/syntax_tree/node.rb', line 7555

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

#child_nodesObject Also known as: deconstruct



7559
7560
7561
# File 'lib/syntax_tree/node.rb', line 7559

def child_nodes
  [*exceptions, variable]
end

#deconstruct_keys(_keys) ⇒ Object



7565
7566
7567
7568
7569
7570
7571
7572
# File 'lib/syntax_tree/node.rb', line 7565

def deconstruct_keys(_keys)
  {
    exceptions: exceptions,
    variable: variable,
    location: location,
    comments: comments
  }
end

#format(q) ⇒ Object



7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
# File 'lib/syntax_tree/node.rb', line 7574

def format(q)
  q.group do
    if exceptions
      q.text(" ")
      q.format(exceptions)
    end

    if variable
      q.text(" => ")
      q.format(variable)
    end
  end
end