class Rage::Router::ParametricNode

def get_next_node(path, path_index, _, _)

def get_next_node(path, path_index, _, _)
  find_static_matching_child(path, path_index)
end

def initialize(static_suffix, node_path)

def initialize(static_suffix, node_path)
  super()
  @static_suffix = static_suffix
  @kind = Node::PARAMETRIC
  @node_paths = Set.new([node_path])
end