Skip Menu |

This queue is for tickets about the Doxygen-Filter-Perl CPAN distribution.

Report information
The Basics
Id: 102142
Status: open
Priority: 0/
Queue: Doxygen-Filter-Perl

People
Owner: JORDAN [...] cpan.org
Requestors: ari.jolma [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.62
Fixed in: (no value)



Subject: Parsing of doxygen attributes problematic
The regexe at Perl.pm:876 parses an attribute in doxygen format. If no comments are given (which is typical I believe) the regex requires a space after the attribute name, otherwise the attribute is disregarded.
On Mon Feb 16 03:58:22 2015, AJOLMA wrote: Show quoted text
> The regexe at Perl.pm:876 parses an attribute in doxygen format. If no > comments are given (which is typical I believe) the regex requires a > space after the attribute name, otherwise the attribute is > disregarded.
Please propose a patch or an example of what you are seeing based on the new 1.70 code I am releasing today.
On Mon Mar 16 16:44:33 2015, JORDAN wrote: Show quoted text
> On Mon Feb 16 03:58:22 2015, AJOLMA wrote:
> > The regexe at Perl.pm:876 parses an attribute in doxygen format. If > > no > > comments are given (which is typical I believe) the regex requires a > > space after the attribute name, otherwise the attribute is > > disregarded.
> > Please propose a patch or an example of what you are seeing based on > the new 1.70 code I am releasing today.
You could change the last \s+ to \s*. Then the regex matches without trailing whitespace but comments, if used, are extracted.