line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WordLists::Base;
|
2
|
11
|
|
|
11
|
|
24731
|
use strict;
|
|
11
|
|
|
|
|
21
|
|
|
11
|
|
|
|
|
480
|
|
3
|
11
|
|
|
11
|
|
1050
|
use utf8;
|
|
11
|
|
|
|
|
66
|
|
|
11
|
|
|
|
|
61
|
|
4
|
|
|
|
|
|
|
our $VERSION = '0.013';
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
#TODO: Copy stuff over from WordLists::Common
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
return 1;
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=pod
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
WordLists::Base - for working with lists of words
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 BUGS
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Please use the Github issues tracker.
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 LICENSE
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Copyright 2011-2012 © Cambridge University Press.
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=cut
|