Class: SyntaxTree::RescueMod

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

Overview

RescueMod represents the use of the modifier form of a rescue clause.

expression rescue value

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(statement:, value:, location:, comments: []) ⇒ RescueMod

Returns a new instance of RescueMod.



7755
7756
7757
7758
7759
7760
# File 'lib/syntax_tree/node.rb', line 7755

def initialize(statement:, value:, location:, comments: [])
  @statement = statement
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



7753
7754
7755
# File 'lib/syntax_tree/node.rb', line 7753

def comments
  @comments
end

#statementObject (readonly)

untyped

the expression to execute



7747
7748
7749
# File 'lib/syntax_tree/node.rb', line 7747

def statement
  @statement
end

#valueObject (readonly)

untyped

the value to use if the executed expression raises an error



7750
7751
7752
# File 'lib/syntax_tree/node.rb', line 7750

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7762
7763
7764
# File 'lib/syntax_tree/node.rb', line 7762

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

#child_nodesObject Also known as: deconstruct



7766
7767
7768
# File 'lib/syntax_tree/node.rb', line 7766

def child_nodes
  [statement, value]
end

#deconstruct_keys(_keys) ⇒ Object



7772
7773
7774
7775
7776
7777
7778
7779
# File 'lib/syntax_tree/node.rb', line 7772

def deconstruct_keys(_keys)
  {
    statement: statement,
    value: value,
    location: location,
    comments: comments
  }
end

#format(q) ⇒ Object



7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
# File 'lib/syntax_tree/node.rb', line 7781

def format(q)
  q.group(0, "begin", "end") do
    q.indent do
      q.breakable(force: true)
      q.format(statement)
    end
    q.breakable(force: true)
    q.text("rescue StandardError")
    q.indent do
      q.breakable(force: true)
      q.format(value)
    end
    q.breakable(force: true)
  end
end