class ActionDispatch::Journey::Path::Pattern::AnchoredRegexp

def visit_SYMBOL(node)

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

def visit_SYMBOL: (Symbol node) -> String

This signature was generated using 8 samples from 1 application.

def visit_SYMBOL(node)
  node = node.to_sym
  return @separator_re unless @matchers.key?(node)
  re = @matchers[node]
  "(#{Regexp.union(re)})"
end