Class: SyntaxTree::Next

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.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

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(arguments:, location:, comments: []) ⇒ Next

Returns a new instance of Next.



6401
6402
6403
6404
6405
# File 'lib/syntax_tree/node.rb', line 6401

def initialize(arguments:, location:, comments: [])
  @arguments = arguments
  @location = location
  @comments = comments
end

Instance Attribute Details

#argumentsObject (readonly)

Args

the arguments passed to the next keyword



6396
6397
6398
# File 'lib/syntax_tree/node.rb', line 6396

def arguments
  @arguments
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



6399
6400
6401
# File 'lib/syntax_tree/node.rb', line 6399

def comments
  @comments
end

Instance Method Details

#accept(visitor) ⇒ Object



6407
6408
6409
# File 'lib/syntax_tree/node.rb', line 6407

def accept(visitor)
  visitor.visit_next(self)
end

#child_nodesObject Also known as: deconstruct



6411
6412
6413
# File 'lib/syntax_tree/node.rb', line 6411

def child_nodes
  [arguments]
end

#deconstruct_keys(_keys) ⇒ Object



6417
6418
6419
# File 'lib/syntax_tree/node.rb', line 6417

def deconstruct_keys(_keys)
  { arguments: arguments, location: location, comments: comments }
end

#format(q) ⇒ Object



6421
6422
6423
# File 'lib/syntax_tree/node.rb', line 6421

def format(q)
  FlowControlFormatter.new("next", self).format(q)
end