# File lib/cucumber/parser/gherkin_builder.rb, line 74
      def examples(statement, examples_rows)
        examples_fields = [
          Ast::Comment.new(statement.comments.map{|comment| comment.value}.join("\n")), 
          statement.line, 
          statement.keyword, 
          legacy_name_for(statement.name, statement.description), 
          matrix(examples_rows)
        ]
        @step_container.add_examples(examples_fields)
      end