in reply to Re^4: Semantic diff for Perl code
in thread Re: Semantic diff for Perl code

This loses the content of the heredoc. Instead of
sub Fee { return <<__Fee__; Fee __Fee__ }

one gets

sub Fee { return <<__Fee__; }

Apparently except when the object is a PPI::Token::Heredoc the content method's return doesn't include the contents of any PPI::Token::Heredoc.