class Cucumber::NoStepMatch

:nodoc:

def activate(test_step)

def activate(test_step)
  # noop
  return test_step
end

def backtrace_line

def backtrace_line
  @step.backtrace_line
end

def file_colon_line

def file_colon_line
  raise "No file:line for #{@step}" unless @step.file_colon_line
  @step.file_colon_line
end

def format_args(*args)

def format_args(*args)
  @name
end

def initialize(step, name)

def initialize(step, name)
  @step = step
  @name = name
end

def location

def location
  raise "No location for #{@step}" unless @step.location
  @step.location
end

def step_arguments

def step_arguments
  []
end

def text_length

def text_length
  @step.text_length
end