Branch Coverage

easyxs/easyxs_perlcall.h
Criterion Covered Total %
branch 0 26 0.0


line true false branch
11 0 0 if (args) {
12 0 0 while (args[argscount] != NULL) argscount++;
18 0 0 PUSHMARK(SP);
20 0 0 if (object || argscount) {
0 0 if (object || argscount) {
21 0 0 EXTEND(SP, (object ? 1 : 0) + argscount);
0 0 EXTEND(SP, (object ? 1 : 0) + argscount);
0 0 EXTEND(SP, (object ? 1 : 0) + argscount);
23 0 0 if (object) PUSHs( sv_mortalcopy(object) );
26 0 0 while (a < argscount) mPUSHs( args[a++] );
55 0 0 if (count == 0) {
61 0 0 while (count-- > 1) PERL_UNUSED_VAR(POPs);
65 0 0 FREETMPS;