Acme-Comment
view release on metacpan or search on metacpan
lib/Acme/Comment.pm view on Meta::CPAN
if( $line =~ /$ldel/ ) {
$lastopen = $i;
$counter++;
push @return, "";
next;
### if we find a closing tag, decreate the counter
### if counter was already at zero, there's a syntax error
} elsif ( $line =~ /$rdel/ ) {
unless($counter) {
die "Missing opening comment for closing comment on line $i\n";
}
$counter--;
push @return, "";
next;
}
}
### if we have a counter, we're still inside a comment
### so dont add it then.. if the line is just whitespace
### we might as well ingore it too
unless($counter or $line =~ /^\s*$/) {
push @return, $line ;
next;
} else {
push @return, "";
next;
}
}
### if we have a counter left after parsing all the lines
### we must have an opening tag (or more) that dont have a closing tag
if($counter){ die "No closing bracket found for opening comment at line $lastopen\n" }
### Filter::Simple demands we return $_ ###
$_ = join "\n", @return;
return $_;
}
sub _gimme_conf { return $Conf };
FILTER_ONLY executable => sub { parse($_); };
1;
=pod
=head1 NAME
Acme::Comment
=head1 SYNOPSIS
use Acme::Comment type=>'C++', own_line=>1;
/*
if (ref $mod) {
$bar->{do}->blat(msg => 'blarg');
eval {
i'm sooo sick of this time for some coffee
*/
// I prefer beer. --sqrn
=head1 DESCRIPTION
Acme::Comment allows multi-line comments which are filtered out.
Unlike the pseudo multi-line comment C<if (0) {}>, the code being
commented out need not be syntactically valid.
=head1 USE
Acme::Comment contains several different commenting styles.
Styles may be specified by the C<types> argument, or by C<start> and
C<end> and manipulated with C<own_line> and C<one_line>.
Styles may contain multi-line comments and single-line comments.
Perl, for example, has single-line comments in the form of C<#>.
C, on the other hand, has multi-line comments which begin with
C</*> and end with C<*/>.
With multi-line comments, leaving out a begin or an end comment
will cause an error.
Both types of comments may only be preceded on a line by whitespace.
=head2 own_line
By default, C<own_line> is true, which means that multi-line comments may not
be followed by any characters other than whitespace on the same line.
This is the safest option if you think your code may contain the
comment characters (perhaps in a regex). If you disable it, other
characters are allowed on the line after the starting delimiter, but these
characters will be ignored. The closing delimiter cannot be followed by
any other characters.
Thus, in the following example, C<$foo> would be set to 1.
/* This is my real comment.
*/
$foo = 1;
If you wish to change this option, you must specify either a C<type> or
C<start> and C<end>.
=head2 one_line
By default, this is set to false, which means that multi-line comments
may not end on the same line in which they begin. Turning this on
allows the following syntax:
/* comment */
If you wish to change this option, you must specify either a C<type> or
C<start> and C<end>.
lib/Acme/Comment.pm view on Meta::CPAN
LISP single-line comments begin with C<;>.
=item * Orthogonal
Orthogonal single-line comments begin with C<;>.
=item * Parrot
Single-line comments use C<#>.
=item * Pascal
Multi-line comments use C<(*> and C<*)>.
=item * Perl
Single-line comments use C<#>.
=item * PHP
PHP multi-line style uses C</*> and C<*/>. Single-line uses C<//>.
=item * Pilot
Single-line comments in the syntax C<\/\/> are supported.
=item * PL/I
Multi-line comments use C</*> and C<*/>.
=item * PostScript
Single-line comments use C<%>.
=item * Python
Single-line comments use C<#>.
=item * Ruby
Ruby multi-line comments begin with C<=begin> and end with
C<=end>. Single-line comments use C<#>.
=item * Scheme
Scheme single-line comments begin with C<;>.
=item * Unlambda
Single-line comments use C<#>.
=item * Var'aq
Multi-line comments use C<(*> and C<*)>.
=back
=head1 CAVEATS
Because of the way source filters work, it is not possible to eval
code containing comments and have them correctly removed.
=head1 NOTE
Some of these programming languages may be spelled incorrectly, or
may have the wrong quote characters noted. The majority of this
information was found by searches for language specifications.
So please report errors, as well as obscure commenting syntax you
know of.
=head1 Acknowledgements
Thanks to Abigail and Glenn Maciag for their suggestions.
=head1 BUG REPORTS
Please report bugs or other issues to E<lt>bug-acme-comment@rt.cpan.orgE<gt>.
=head1 AUTHOR
This module by Jos Boumans E<lt>kane@cpan.orgE<gt>.
=head1 COPYRIGHT
This library is free software; you may redistribute and/or modify it
under the same terms as Perl itself.
=cut
( run in 0.870 second using v1.01-cache-2.11-cpan-ceb78f64989 )