src/xs/PerlTrace.h | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 1 | 1 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | n/a | ||
pod | n/a | ||
total | 1 | 1 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | #pragma once | ||||||
2 | |||||||
3 | #include |
||||||
4 | #include |
||||||
5 | #include |
||||||
6 | |||||||
7 | namespace xs { | ||||||
8 | |||||||
9 | struct PerlTrace: panda::BacktraceInfo { | ||||||
10 | 50 | using panda::BacktraceInfo::BacktraceInfo; | |||||
11 | virtual panda::string to_string() const noexcept override; | ||||||
12 | }; | ||||||
13 | |||||||
14 | } |