class ActionDispatch::Journey::Visitors::Each

def visit(node, block)

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

type ActionDispatch__Journey__Visitors__Each_visit_node = ActionDispatch::Journey::Nodes::Slash | ActionDispatch::Journey::Nodes::Symbol | ActionDispatch::Journey::Nodes::Cat | ActionDispatch::Journey::Nodes::Literal | ActionDispatch::Journey::Nodes::Dot | ActionDispatch::Journey::Nodes::Group | ActionDispatch::Journey::Nodes::Star | ActionDispatch::Journey::Nodes::Dummy

def visit: (ActionDispatch__Journey__Visitors__Each_visit_node node, Proc seed, Proc block) -> Proc

This signature was generated using 246 samples from 1 application.

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