Class: SyntaxTree::Return
Overview
Return represents using the return keyword with arguments.
return value
Instance Attribute Summary collapse
-
#arguments ⇒ Object
readonly
- Args
-
the arguments being passed to the keyword.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(arguments:, location:, comments: []) ⇒ Return
constructor
A new instance of Return.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(arguments:, location:, comments: []) ⇒ Return
Returns a new instance of Return.
7925 7926 7927 7928 7929 |
# File 'lib/syntax_tree/node.rb', line 7925 def initialize(arguments:, location:, comments: []) @arguments = arguments @location = location @comments = comments end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
- Args
-
the arguments being passed to the keyword
7920 7921 7922 |
# File 'lib/syntax_tree/node.rb', line 7920 def arguments @arguments end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
7923 7924 7925 |
# File 'lib/syntax_tree/node.rb', line 7923 def comments @comments end |
Instance Method Details
#accept(visitor) ⇒ Object
7931 7932 7933 |
# File 'lib/syntax_tree/node.rb', line 7931 def accept(visitor) visitor.visit_return(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7935 7936 7937 |
# File 'lib/syntax_tree/node.rb', line 7935 def child_nodes [arguments] end |
#deconstruct_keys(_keys) ⇒ Object
7941 7942 7943 |
# File 'lib/syntax_tree/node.rb', line 7941 def deconstruct_keys(_keys) { arguments: arguments, location: location, comments: comments } end |
#format(q) ⇒ Object
7945 7946 7947 |
# File 'lib/syntax_tree/node.rb', line 7945 def format(q) FlowControlFormatter.new("return", self).format(q) end |