File Coverage

Stackframe.xsi
Criterion Covered Total %
statement 11 12 91.6
branch 4 10 40.0
condition n/a
subroutine n/a
pod n/a
total 15 22 68.1


line stmt bran cond sub pod time code
1             MODULE = Exception::Backtrace PACKAGE = Exception::Backtrace::Stackframe
2             PROTOTYPES: DISABLE
3              
4 6 50         string Stackframe::file() { RETVAL = THIS->file; }
5              
6 109 50         string Stackframe::library() { RETVAL = THIS->library; }
7              
8 40 50         string Stackframe::name() { RETVAL = THIS->name; }
9              
10 0 0         string Stackframe::mangled_name() { RETVAL = THIS->mangled_name; }
11              
12 10           std::uint64_t Stackframe::address() { RETVAL = THIS->address; }
13 5            
14 10           std::uint64_t Stackframe::offset() { RETVAL = THIS->offset; }
15 5            
16 12           std::uint64_t Stackframe::line_no() { RETVAL = THIS->line_no; }
17 6            
18 2           std::vector Stackframe::args() { RETVAL = THIS->args; }