diff -r 28463bb10fde -r a8aa5d600806 common/tools/lib/auto/Text/CSV/string.al --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/lib/auto/Text/CSV/string.al Mon May 11 13:48:11 2009 +0100 @@ -0,0 +1,20 @@ +# NOTE: Derived from blib\lib\Text\CSV.pm. +# Changes made here will be lost when autosplit again. +# See AutoSplit.pm. +package Text::CSV; + +#line 93 "blib\lib\Text\CSV.pm (autosplit into blib\lib\auto/Text\CSV/string.al)" +################################################################################ +# string +# +# object method returning the result of the most recent combine() or the +# input to the most recent parse(), whichever is more recent. there are no +# side-effects. +################################################################################ +sub string { + my $self = shift; + return $self->{'_STRING'}; +} + +# end of Text::CSV::string +1;