class Cucumber::CucumberExpressions::GroupBuilder

def build(match, group_indices)

def build(match, group_indices)
  group_index = group_indices.next
  children = @group_builders.map { |gb| gb.build(match, group_indices) }
  Group.new(match[group_index], match.offset(group_index)[0], match.offset(group_index)[1], children)
end