[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
0xampp
/
perl
/
vendor
/
lib
/
Moose
/
Meta
/
Method
/
Accessor
/
Native
/
[
Home
]
File: Array.pm
package Moose::Meta::Method::Accessor::Native::Array; our $VERSION = '2.2014'; use strict; use warnings; use Moose::Role; sub _inline_check_var_is_valid_index { my $self = shift; my ($var) = @_; return ( 'if (!defined(' . $var . ') || ' . $var . ' !~ /^-?\d+$/) {', $self->_inline_throw_exception( InvalidArgumentToMethod => 'argument => '.$var.','. 'method_name => "'.$self->delegate_to_method.'",'. 'type_of_argument => "integer",'. 'type => "Int",'. 'argument_noun => "index"', ) . ';', '}', ); } no Moose::Role; 1;