class Cucumber::Hooks::AfterStepHook

def describe_to(visitor, *args)

def describe_to(visitor, *args)
  visitor.after_step_hook(self, *args)
end

def initialize(location)

def initialize(location)
  @location = location
end

def match_locations?(queried_locations)

def match_locations?(queried_locations)
  queried_locations.any? { |other_location| other_location.match?(location) }
end

def name

def name
  "AfterStep hook"
end