PVN => 'PUSHp(pv, iv)',
YES => 'PUSHs(&PL_sv_yes)',
NO => 'PUSHs(&PL_sv_no)',
- UNDEF => '' # implicit undef
+ UNDEF => '', # implicit undef
);
%XS_TypeSet = (
NV => '*nv_return =',
PV => '*pv_return =',
PVN => ['*pv_return =', '*iv_return = (IV)'],
- YES => undef, NO => undef, UNDEF => undef
+ YES => undef,
+ NO => undef,
+ UNDEF => undef,
);
{name => "ANSWER", default=>["UV", 42]}, "NOTDEF",
{name => "Yes", type=>"YES"},
{name => "No", type=>"NO"},
- {name => "Undef", type=>"UNDEF"}
+ {name => "Undef", type=>"UNDEF"},
);
my @names_only = map {(ref $_) ? $_->{name} : $_} @names;