class ActionDispatch::Journey::Nodes::Star

:nodoc:

def initialize(left)

def initialize(left)
  super(left)
  # By default wildcard routes are non-greedy and must match something.
  @regexp = /.+?/m
end

def name

def name
  left.name.tr "*:", ""
end

def star?; true; end

def star?; true; end

def type; :STAR; end

def type; :STAR; end