Class: SyntaxTree::RescueMod
Overview
RescueMod represents the use of the modifier form of a rescue clause.
expression rescue value
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#statement ⇒ Object
readonly
- untyped
-
the expression to execute.
-
#value ⇒ Object
readonly
- untyped
-
the value to use if the executed expression raises an error.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(statement:, value:, location:, comments: []) ⇒ RescueMod
constructor
A new instance of RescueMod.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(statement:, value:, location:, comments: []) ⇒ RescueMod
Returns a new instance of RescueMod.
7797 7798 7799 7800 7801 7802 |
# File 'lib/syntax_tree/node.rb', line 7797 def initialize(statement:, value:, location:, comments: []) @statement = statement @value = value @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
7795 7796 7797 |
# File 'lib/syntax_tree/node.rb', line 7795 def comments @comments end |
#statement ⇒ Object (readonly)
- untyped
-
the expression to execute
7789 7790 7791 |
# File 'lib/syntax_tree/node.rb', line 7789 def statement @statement end |
#value ⇒ Object (readonly)
- untyped
-
the value to use if the executed expression raises an error
7792 7793 7794 |
# File 'lib/syntax_tree/node.rb', line 7792 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
7804 7805 7806 |
# File 'lib/syntax_tree/node.rb', line 7804 def accept(visitor) visitor.visit_rescue_mod(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7808 7809 7810 |
# File 'lib/syntax_tree/node.rb', line 7808 def child_nodes [statement, value] end |
#deconstruct_keys(_keys) ⇒ Object
7814 7815 7816 7817 7818 7819 7820 7821 |
# File 'lib/syntax_tree/node.rb', line 7814 def deconstruct_keys(_keys) { statement: statement, value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 |
# File 'lib/syntax_tree/node.rb', line 7823 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 |