class Cucumber::StepMatchSearch::CachesStepMatch

def call(step_name) # :nodoc:

:nodoc:
def call(step_name) # :nodoc:
  @match_cache ||= {}
  matches = @match_cache[step_name]
  return matches if matches
  @match_cache[step_name] = super(step_name)
end