Class: SyntaxTree::Next
Overview
Next represents using the next keyword.
next
The next keyword can also optionally be called with an argument:
next value
next can even be called with multiple arguments, but only if parentheses are omitted, as in:
next first, second, third
If a single value is being given, parentheses can be used, as in:
next(value)
Instance Attribute Summary collapse
-
#arguments ⇒ Object
readonly
- Args
-
the arguments passed to the next 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: []) ⇒ Next
constructor
A new instance of Next.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(arguments:, location:, comments: []) ⇒ Next
Returns a new instance of Next.
6565 6566 6567 6568 6569 |
# File 'lib/syntax_tree/node.rb', line 6565 def initialize(arguments:, location:, comments: []) @arguments = arguments @location = location @comments = comments end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
- Args
-
the arguments passed to the next keyword
6560 6561 6562 |
# File 'lib/syntax_tree/node.rb', line 6560 def arguments @arguments end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
6563 6564 6565 |
# File 'lib/syntax_tree/node.rb', line 6563 def comments @comments end |
Instance Method Details
#accept(visitor) ⇒ Object
6571 6572 6573 |
# File 'lib/syntax_tree/node.rb', line 6571 def accept(visitor) visitor.visit_next(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
6575 6576 6577 |
# File 'lib/syntax_tree/node.rb', line 6575 def child_nodes [arguments] end |
#deconstruct_keys(_keys) ⇒ Object
6581 6582 6583 |
# File 'lib/syntax_tree/node.rb', line 6581 def deconstruct_keys(_keys) { arguments: arguments, location: location, comments: comments } end |
#format(q) ⇒ Object
6585 6586 6587 |
# File 'lib/syntax_tree/node.rb', line 6585 def format(q) FlowControlFormatter.new("next", self).format(q) end |