Skip Menu |

This queue is for tickets about the Kavorka CPAN distribution.

Report information
The Basics
Id: 92634
Status: resolved
Priority: 0/
Queue: Kavorka

People
Owner: Nobody in particular
Requestors: perl [...] toby.ink
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Investigate compatibility with forthcoming native signatures
Kavorka should be a proper superset. In particular, native sigs seem to allow: sub foo ($bar=, @baz=) { ... } which is equivalent to: sub foo ($bar=undef, @baz=()) { ... } And native sigs allow anonymous parameters (i.e. $) to have a default.
Done as much as possible. The only incompatibility is that this does not work: fun foo ($x, $y=$x) { ... } while this does: sub foo ($x, $y=$x) { ... }