-
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.
proof-of-concept for feature-tracking and perl sub signatures (see #273)
- Loading branch information
1 parent
9b5f30a
commit e6967be
Showing
8 changed files
with
301 additions
and
19 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
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,55 @@ | ||
package PPI::Token::Signature; | ||
|
||
=pod | ||
=head1 NAME | ||
PPI::Token::Signature - A subroutine signature descriptor | ||
=head1 INHERITANCE | ||
PPI::Token::Signature | ||
isa PPI::Token::Prototype | ||
isa PPI::Token | ||
isa PPI::Element | ||
=head1 SYNOPSIS | ||
TODO: document | ||
=head1 DESCRIPTION | ||
TODO: document | ||
=cut | ||
|
||
use strict; | ||
use PPI::Token::Prototype (); | ||
|
||
our $VERSION = '1.276'; | ||
|
||
our @ISA = "PPI::Token::Prototype"; | ||
|
||
1; | ||
|
||
=pod | ||
=head1 SUPPORT | ||
See the L<support section|PPI/SUPPORT> in the main module. | ||
=head1 AUTHOR | ||
Adam Kennedy E<lt>adamk@cpan.orgE<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
Oops, something went wrong.