Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
share
/
perl5
/
vendor_perl
/
Perl
/
MinimumVersion
Upload
3 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
Reason.pm
505 B
-rw-r--r--
2014-08-22 20:33:38
Edit
Del
Editing: Reason.pm
(505 B)
Path: /usr/share/perl5/vendor_perl/Perl/MinimumVersion/Reason.pm
Back
package Perl::MinimumVersion::Reason; $Perl::MinimumVersion::Reason::VERSION = '1.38'; # Simple abstraction for a syntax limitation. # It contains the limiting version, the rule responsible, and the # PPI element responsible for the limitation (if any). use 5.006; use strict; use warnings; sub new { my $class = shift; return bless { @_ }, $class; } sub version { $_[0]->{version}; } sub rule { $_[0]->{rule}; } sub element { $_[0]->{element}; } sub explanation { $_[0]->{explanation}; } 1;