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
- #===(other) ⇒ Object
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #copy(arguments: nil, location: nil) ⇒ Object
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(arguments:, location:) ⇒ Next
constructor
A new instance of Next.
Methods inherited from Node
#construct_keys, #end_char, #pretty_print, #start_char, #to_json, #to_mermaid
Constructor Details
#initialize(arguments:, location:) ⇒ Next
Returns a new instance of Next.
7940 7941 7942 7943 7944 |
# File 'lib/syntax_tree/node.rb', line 7940 def initialize(arguments:, location:) @arguments = arguments @location = location @comments = [] end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
- Args
-
the arguments passed to the next keyword
7935 7936 7937 |
# File 'lib/syntax_tree/node.rb', line 7935 def arguments @arguments end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
7938 7939 7940 |
# File 'lib/syntax_tree/node.rb', line 7938 def comments @comments end |
Instance Method Details
#===(other) ⇒ Object
7975 7976 7977 |
# File 'lib/syntax_tree/node.rb', line 7975 def ===(other) other.is_a?(Next) && arguments === other.arguments end |
#accept(visitor) ⇒ Object
7946 7947 7948 |
# File 'lib/syntax_tree/node.rb', line 7946 def accept(visitor) visitor.visit_next(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
7950 7951 7952 |
# File 'lib/syntax_tree/node.rb', line 7950 def child_nodes [arguments] end |
#copy(arguments: nil, location: nil) ⇒ Object
7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 |
# File 'lib/syntax_tree/node.rb', line 7954 def copy(arguments: nil, location: nil) node = Next.new( arguments: arguments || self.arguments, location: location || self.location ) node.comments.concat(comments.map(&:copy)) node end |
#deconstruct_keys(_keys) ⇒ Object
7967 7968 7969 |
# File 'lib/syntax_tree/node.rb', line 7967 def deconstruct_keys(_keys) { arguments: arguments, location: location, comments: comments } end |
#format(q) ⇒ Object
7971 7972 7973 |
# File 'lib/syntax_tree/node.rb', line 7971 def format(q) FlowControlFormatter.new("next", self).format(q) end |