Class: SyntaxTree::Retry
Overview
Retry represents the use of the retry keyword.
retry
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- String
-
the value of the keyword.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(value:, location:, comments: []) ⇒ Retry
constructor
A new instance of Retry.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, location:, comments: []) ⇒ Retry
Returns a new instance of Retry.
7889 7890 7891 7892 7893 |
# File 'lib/syntax_tree/node.rb', line 7889 def initialize(value:, location:, comments: []) @value = value @location = location @comments = comments end |
Instance Attribute Details
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
7887 7888 7889 |
# File 'lib/syntax_tree/node.rb', line 7887 def comments @comments end |
#value ⇒ Object (readonly)
- String
-
the value of the keyword
7884 7885 7886 |
# File 'lib/syntax_tree/node.rb', line 7884 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
7895 7896 7897 |
# File 'lib/syntax_tree/node.rb', line 7895 def accept(visitor) visitor.visit_retry(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7899 7900 7901 |
# File 'lib/syntax_tree/node.rb', line 7899 def child_nodes [] end |
#deconstruct_keys(_keys) ⇒ Object
7905 7906 7907 |
# File 'lib/syntax_tree/node.rb', line 7905 def deconstruct_keys(_keys) { value: value, location: location, comments: comments } end |
#format(q) ⇒ Object
7909 7910 7911 |
# File 'lib/syntax_tree/node.rb', line 7909 def format(q) q.text(value) end |