line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WebService::Slack::WebApi::Rtm; |
2
|
3
|
|
|
3
|
|
2479
|
use strict; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
91
|
|
3
|
3
|
|
|
3
|
|
18
|
use warnings; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
74
|
|
4
|
3
|
|
|
3
|
|
18
|
use utf8; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
14
|
|
5
|
|
|
|
|
|
|
|
6
|
3
|
|
|
3
|
|
78
|
use parent 'WebService::Slack::WebApi::Base'; |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
37
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
use WebService::Slack::WebApi::Generator ( |
9
|
3
|
|
|
|
|
71
|
connect => { |
10
|
|
|
|
|
|
|
batch_presence_aware => { isa => 'Bool', optional => 1 }, |
11
|
|
|
|
|
|
|
presence_sub => { isa => 'Bool', optional => 1 }, |
12
|
|
|
|
|
|
|
}, |
13
|
|
|
|
|
|
|
start => { |
14
|
|
|
|
|
|
|
batch_presence_aware => { isa => 'Bool', optional => 1 }, |
15
|
|
|
|
|
|
|
mpim_aware => { isa => 'Bool', optional => 1 }, |
16
|
|
|
|
|
|
|
no_latest => { isa => 'Bool', optional => 1 }, |
17
|
|
|
|
|
|
|
no_unreads => { isa => 'Bool', optional => 1 }, |
18
|
|
|
|
|
|
|
presence_sub => { isa => 'Bool', optional => 1 }, |
19
|
|
|
|
|
|
|
simple_latest => { isa => 'Bool', optional => 1 }, |
20
|
|
|
|
|
|
|
}, |
21
|
3
|
|
|
3
|
|
414
|
); |
|
3
|
|
|
|
|
7
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|