Class: SyntaxTree::Retry

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

Overview

Retry represents the use of the retry keyword.

retry

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

Returns a new instance of Retry.



7847
7848
7849
7850
7851
# File 'lib/syntax_tree/node.rb', line 7847

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

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



7845
7846
7847
# File 'lib/syntax_tree/node.rb', line 7845

def comments
  @comments
end

#valueObject (readonly)

String

the value of the keyword



7842
7843
7844
# File 'lib/syntax_tree/node.rb', line 7842

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



7853
7854
7855
# File 'lib/syntax_tree/node.rb', line 7853

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

#child_nodesObject Also known as: deconstruct



7857
7858
7859
# File 'lib/syntax_tree/node.rb', line 7857

def child_nodes
  []
end

#deconstruct_keys(_keys) ⇒ Object



7863
7864
7865
# File 'lib/syntax_tree/node.rb', line 7863

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

#format(q) ⇒ Object



7867
7868
7869
# File 'lib/syntax_tree/node.rb', line 7867

def format(q)
  q.text(value)
end