Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'nom' into newio
  • Loading branch information
lizmat committed Feb 23, 2015
2 parents 71129ea + 0966e98 commit fb24e4b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/core/Parameter.pm
Expand Up @@ -183,17 +183,17 @@ my class Parameter { # declared in BOOTSTRAP
}
} else {
if $!flags +& $SIG_ELEM_IS_CAPTURE {
$name = '|';
$name = '|';
} elsif $!flags +& $SIG_ELEM_IS_PARCEL {
$name = '\\';
$name = '\\';
} elsif $!flags +& $SIG_ELEM_ARRAY_SIGIL {
$name = '@';
$name = '@';
} elsif $!flags +& $SIG_ELEM_HASH_SIGIL {
$name = '%';
$name = '%';
} elsif $type ~~ /^^ Callable >> / {
$name = '&';
$name = '&';
} else {
$name = '$';
$name = '$';
}
}
my $default = self.default();
Expand Down

0 comments on commit fb24e4b

Please sign in to comment.