-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d23b3a
commit b45bce2
Showing
12 changed files
with
708 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package PPI::Structure::Signature; | ||
|
||
=pod | ||
=head1 NAME | ||
PPI::Structure::Signature - List of subroutine signature elements | ||
=head1 SYNOPSIS | ||
sub do_thing( $param, $arg ) {} | ||
=head1 INHERITANCE | ||
PPI::Structure::Signature | ||
isa PPI::Structure::List | ||
isa PPI::Structure | ||
isa PPI::Node | ||
isa PPI::Element | ||
=head1 DESCRIPTION | ||
C<PPI::Structure::Signature> is the class used for circular braces that | ||
represent lists of signature elements. | ||
=head1 METHODS | ||
C<PPI::Structure::Signature> has no methods beyond those provided by the | ||
standard L<PPI::Structure::List>, L<PPI::Structure>, L<PPI::Node> and | ||
L<PPI::Element> methods. | ||
=cut | ||
|
||
use strict; | ||
use PPI::Structure (); | ||
|
||
our $VERSION = '1.277'; | ||
|
||
our @ISA = "PPI::Structure::List"; | ||
|
||
1; | ||
|
||
=head1 SUPPORT | ||
See the L<support section|PPI/SUPPORT> in the main module. | ||
=head1 AUTHOR | ||
Adam Kennedy E<lt>[email protected]E<gt> | ||
=head1 COPYRIGHT | ||
Copyright 2001 - 2011 Adam Kennedy. | ||
This program is free software; you can redistribute | ||
it and/or modify it under the same terms as Perl itself. | ||
The full text of the license can be found in the | ||
LICENSE file included with this module. | ||
=cut |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
sub prot( | ||
( | ||
a | ||
\\ | ||
) | ||
){} prot(1) |
Oops, something went wrong.