class Cucumber::Formatter::HookQueryVisitor

def after_hook(*)

def after_hook(*)
  @hook = true
  @type = :after
end

def after_step_hook(*)

def after_step_hook(*)
  @hook = true
  @type = :after_step
end

def around_hook(*)

def around_hook(*)
  @hook = true
  @type = :around
end

def before_hook(*)

def before_hook(*)
  @hook = true
  @type = :before
end

def hook?

def hook?
  @hook
end

def initialize(test_step)

def initialize(test_step)
  @hook = false
  @type = :no_hook
  test_step.source.last.describe_to(self)
end

def step(*)

def step(*)
end