method

visit_SYMBOL

rails latest stable - Class: ActionDispatch::Journey::Path::Pattern::AnchoredRegexp
visit_SYMBOL(node)
public

No documentation available.

# File actionpack/lib/action_dispatch/journey/path/pattern.rb, line 81
          def visit_SYMBOL(node)
            node = node.to_sym

            return @separator_re unless @matchers.key?(node)

            re = @matchers[node]
            "(#{Regexp.union(re)})"
          end