# File lib/gherkin/formatter/line_filter.rb, line 16
      def filter_table_body_rows(rows)
        body = rows.to_a[1..-1].select do |row|
          @lines.detect do |line|
            row.line == line
          end
        end
        [rows[0]] + body
      end