class Cucumber::Glue::Hook

def initialize(registry, tag_expressions, proc)

def initialize(registry, tag_expressions, proc)
  @registry = registry
  @tag_expressions = tag_expressions
  @proc = proc
  @location = Cucumber::Core::Ast::Location.from_source_location(*@proc.source_location)
  warn_for_old_style_tag_expressions(tag_expressions)
end