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
Constructor Details
#initialize(arguments:, location:, comments: []) ⇒ Next
Returns a new instance of Next.
6310 6311 6312 6313 6314 |
# File 'lib/syntax_tree/node.rb', line 6310 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
6305 6306 6307 |
# File 'lib/syntax_tree/node.rb', line 6305 def arguments @arguments end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
6308 6309 6310 |
# File 'lib/syntax_tree/node.rb', line 6308 def comments @comments end |
Instance Method Details
#accept(visitor) ⇒ Object
6316 6317 6318 |
# File 'lib/syntax_tree/node.rb', line 6316 def accept(visitor) visitor.visit_next(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
6320 6321 6322 |
# File 'lib/syntax_tree/node.rb', line 6320 def child_nodes [arguments] end |
#deconstruct_keys(keys) ⇒ Object
6326 6327 6328 |
# File 'lib/syntax_tree/node.rb', line 6326 def deconstruct_keys(keys) { arguments: arguments, location: location, comments: comments } end |
#format(q) ⇒ Object
6330 6331 6332 |
# File 'lib/syntax_tree/node.rb', line 6330 def format(q) FlowControlFormatter.new("next", self).format(q) end |