TAP::Parser::ResultFactory(3p) Perl Programmers Reference Guide
TAP::Parser::ResultFactory(3p) Perl Programmers Reference Guide # TAP::Parser::ResultFactory(3p) Perl Programmers Reference Guide NNAAMMEE # TAP::Parser::ResultFactory - Factory for creating TAP::Parser output objects SSYYNNOOPPSSIISS # use TAP::Parser::ResultFactory; my $token = {...}; my $factory = TAP::Parser::ResultFactory->new; my $result = $factory->make_result( $token ); VVEERRSSIIOONN # Version 3.44 DDEESSCCRRIIPPTTIIOONN # This is a simple factory class which returns a TAP::Parser::Result subclass representing the current bit of test data from TAP (usually a single line). It is used primarily by TAP::Parser::Grammar. ...