line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package BorderStyle::Test::Labeled; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
494
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
33
|
|
4
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
27
|
|
5
|
1
|
|
|
1
|
|
709
|
use utf8; |
|
1
|
|
|
|
|
16
|
|
|
1
|
|
|
|
|
6
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
35
|
use parent 'BorderStyleBase'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY |
10
|
|
|
|
|
|
|
our $DATE = '2022-01-24'; # DATE |
11
|
|
|
|
|
|
|
our $DIST = 'BorderStyleBase'; # DIST |
12
|
|
|
|
|
|
|
our $VERSION = '0.010'; # VERSION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
our %BORDER = ( |
15
|
|
|
|
|
|
|
v => 2, |
16
|
|
|
|
|
|
|
summary => 'A border style that uses labeled characters as described in specification, to show which character goes where', |
17
|
|
|
|
|
|
|
chars => [ # y |
18
|
|
|
|
|
|
|
# 0 1 2 3 4 5 6 7 <-- x |
19
|
|
|
|
|
|
|
['A', 'B', 'C', 'D'], # 0 |
20
|
|
|
|
|
|
|
['E', 'F', 'G'], # 1 |
21
|
|
|
|
|
|
|
['H', 'I', 'J', 'K', 'a', 'b'], # 2 |
22
|
|
|
|
|
|
|
['L', 'M', 'N'], # 3 |
23
|
|
|
|
|
|
|
['O', 'P', 'Q', 'R', 'e', 'f', 'g', 'h'], # 4 |
24
|
|
|
|
|
|
|
['S', 'T', 'U', 'V'], # 5 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
['Ȧ', 'Ḃ', 'Ċ', 'Ḋ'], # 6 |
27
|
|
|
|
|
|
|
['Ṣ', 'Ṭ', 'Ụ', 'Ṿ'], # 7 |
28
|
|
|
|
|
|
|
], |
29
|
|
|
|
|
|
|
utf8 => 1, |
30
|
|
|
|
|
|
|
); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
1; |
33
|
|
|
|
|
|
|
# ABSTRACT: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
__END__ |