Class: SyntaxTree::Next
- Inherits:
-
Object
- Object
- SyntaxTree::Next
- Defined in:
- lib/syntax_tree.rb
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.
-
#location ⇒ Object
readonly
- Location
-
the location of this node.
Instance Method Summary collapse
- #child_nodes ⇒ Object
- #format(q) ⇒ Object
-
#initialize(arguments:, location:, comments: []) ⇒ Next
constructor
A new instance of Next.
- #pretty_print(q) ⇒ Object
- #to_json(*opts) ⇒ Object
Constructor Details
#initialize(arguments:, location:, comments: []) ⇒ Next
Returns a new instance of Next.
8540 8541 8542 8543 8544 |
# File 'lib/syntax_tree.rb', line 8540 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
8532 8533 8534 |
# File 'lib/syntax_tree.rb', line 8532 def arguments @arguments end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
8538 8539 8540 |
# File 'lib/syntax_tree.rb', line 8538 def comments @comments end |
#location ⇒ Object (readonly)
- Location
-
the location of this node
8535 8536 8537 |
# File 'lib/syntax_tree.rb', line 8535 def location @location end |
Instance Method Details
#child_nodes ⇒ Object
8546 8547 8548 |
# File 'lib/syntax_tree.rb', line 8546 def child_nodes [arguments] end |
#format(q) ⇒ Object
8550 8551 8552 |
# File 'lib/syntax_tree.rb', line 8550 def format(q) FlowControlFormatter.new("next", self).format(q) end |
#pretty_print(q) ⇒ Object
8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 |
# File 'lib/syntax_tree.rb', line 8554 def pretty_print(q) q.group(2, "(", ")") do q.text("next") q.breakable q.pp(arguments) q.pp(Comment::List.new(comments)) end end |
#to_json(*opts) ⇒ Object
8565 8566 8567 8568 8569 |
# File 'lib/syntax_tree.rb', line 8565 def to_json(*opts) { type: :next, args: arguments, loc: location, cmts: comments }.to_json( *opts ) end |