class Cucumber::Messages::Step

def initialize(

def initialize(
  location: Location.new,
  keyword: '',
  keyword_type: nil,
  text: '',
  doc_string: nil,
  data_table: nil,
  id: ''
)
  @location = location
  @keyword = keyword
  @keyword_type = keyword_type
  @text = text
  @doc_string = doc_string
  @data_table = data_table
  @id = id
  super()
end