Codebase list libfunction-parameters-perl / f7a3b5f
version 1.0601 Lukas Mai 9 years ago
3 changed file(s) with 11 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
00 Revision history for Function-Parameters
1
2 1.0601 2014-10-20
3 - allow nameless parameters for arguments that should be ignored
4 - fix string comparison bug (":lvaluefoobar" treated as ":lvalue", etc)
5 - explicitly disallow $_/@_/%_ as parameters
6 - change "Not enough" to "Too few" in error message to match perl
7 - don't parse $#foo as a sigil plus comment
8 - remove implicitly optional parameters ("fun foo($x = 42, $y)" used to
9 be equivalent to "fun foo($x = 42, $y = undef)")
110
211 1.0503 2014-10-17
312 - skip initializing parameters if the default argument is undef
22 use v5.14.0;
33 use warnings;
44
5 our $VERSION = '1.0503';
5 our $VERSION = '1.0601';
66
77 # If Moo isn't loaded yet but Moose is, avoid pulling in Moo and fall back to Moose
88 my ($Moo, $meta_make_immutable);
66
77 use XSLoader;
88 BEGIN {
9 our $VERSION = '1.0503';
9 our $VERSION = '1.0601';
1010 XSLoader::load;
1111 }
1212