line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Reddit::Client::ModmailMessage; |
2
|
5
|
|
|
5
|
|
34
|
use strict; |
|
5
|
|
|
|
|
9
|
|
|
5
|
|
|
|
|
142
|
|
3
|
5
|
|
|
5
|
|
23
|
use warnings; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
121
|
|
4
|
5
|
|
|
5
|
|
26
|
use Carp; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
374
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
require Reddit::Client::Thing; # base doesn't require. use parent does |
7
|
5
|
|
|
5
|
|
32
|
use base qw/Reddit::Client::Thing/; |
|
5
|
|
|
|
|
20
|
|
|
5
|
|
|
|
|
576
|
|
8
|
5
|
|
|
|
|
27
|
use fields qw/ |
9
|
|
|
|
|
|
|
author |
10
|
|
|
|
|
|
|
body |
11
|
|
|
|
|
|
|
bodyMarkdown |
12
|
|
|
|
|
|
|
date |
13
|
|
|
|
|
|
|
isInternal |
14
|
5
|
|
|
5
|
|
48
|
/; |
|
5
|
|
|
|
|
12
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# no type, apparently. None listed in docs. Message is t4, but no indication |
17
|
|
|
|
|
|
|
# these are Messages |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|