One Hat Cyber Team
Your IP :
172.16.0.254
Server IP :
58.26.163.33
Server :
Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Server Software :
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
PHP Version :
7.3.25
Buat File
|
Buat Folder
Eksekusi
Dir :
C:
/
xampp7
/
perl
/
vendor
/
lib
/
Parse
/
Method
/
Signatures
/
Edit File:
Types.pm
use strict; use warnings; package Parse::Method::Signatures::Types; use Moose::Util::TypeConstraints; use MooseX::Types::Moose qw/Str ArrayRef/; use namespace::clean; use MooseX::Types -declare => [qw/ VariableName TypeConstraint Param ParamCollection PositionalParam NamedParam UnpackedParam /]; subtype VariableName, as Str, where { /^[\$@%](?:[a-z_][a-z_\d]*)?$/i }, message { 'not a valid variable name' }; subtype TypeConstraint, as 'Moose::Meta::TypeConstraint'; class_type Param, { class => 'Parse::Method::Signatures::Param' }; class_type ParamCollection, { class => 'Parse::Method::Signatures::ParamCollection' }; coerce ParamCollection, from ArrayRef, via { Parse::Method::Signatures::ParamCollection->new(params => $_) }; role_type PositionalParam, { role => 'Parse::Method::Signatures::Param::Positional' }; role_type NamedParam, { role => 'Parse::Method::Signatures::Param::Named' }; role_type UnpackedParam, { role => 'Parse::Method::Signatures::Param::Unpacked' }; 1;
Simpan