File Coverage

XS.xs
Criterion Covered Total %
statement 0 4 0.0
branch n/a
condition n/a
subroutine n/a
pod n/a
total 0 4 0.0


line stmt bran cond sub pod time code
1             #include "EXTERN.h"
2             #include "perl.h"
3             #include "XSUB.h"
4             #include "ppport.h"
5            
6             MODULE = PPI::XS PACKAGE = PPI::XS
7            
8             PROTOTYPES: DISABLE
9            
10             SV *
11             _PPI_Element__significant (self)
12             SV * self
13             PPCODE:
14             {
15 0           XSRETURN_YES;
16             }
17            
18             SV *
19             _PPI_Token_Comment__significant (self)
20             SV * self
21             PPCODE:
22             {
23 0           XSRETURN_NO;
24             }
25            
26             SV *
27             _PPI_Token_Whitespace__significant (self)
28             SV * self
29             PPCODE:
30             {
31 0           XSRETURN_NO;
32             }
33            
34             SV *
35             _PPI_Token_End__significant (self)
36             SV * self
37             PPCODE:
38             {
39 0           XSRETURN_NO;
40             }