class ActionDispatch::Journey::Visitors::Each

Experimental RBS support (using type sampling data from the type_fusion project).

# sig/action_dispatch/journey/visitors.rbs

class ActionDispatch::Journey::Visitors::Each < ActionDispatch::Journey::Visitors::FunctionalVisitor
  def visit: (ActionDispatch::Journey::Nodes::Cat node, Proc block) -> untyped
end

:nodoc:
Loop through the requirements AST.

def visit(node, block)

Experimental RBS support (using type sampling data from the type_fusion project).

def visit: (ActionDispatch::Journey::Nodes::Cat node, Proc block) -> untyped

This signature was generated using 1 sample from 1 application.

:nodoc:
Loop through the requirements AST.
def visit(node, block)
  block.call(node)
  super
end