class Cucumber::Glue::Snippet::MultilineArgumentSnippet::DataTable

def append_block_parameter_to(array)

def append_block_parameter_to(array)
  array << 'table'
end

def comment

def comment
  <<~COMMENT.chomp
    # table is a #{Cucumber::MultilineArgument::DataTable}
      pending # Write code here that turns the phrase above into concrete actions
  COMMENT
end

def initialize(table)

def initialize(table)
  @table = table
end