class Cucumber::Core::Ast::Feature

def initialize(language, location, comments, tags, keyword, name, description, feature_elements)

def initialize(language, location, comments, tags, keyword, name, description, feature_elements)
  @language = language
  @location = location
  @background = BackgroundFinder.new(feature_elements).result
  @comments = comments
  @tags = tags
  @keyword = keyword
  @name = name
  @description = description
  @feature_elements = feature_elements
end