line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::Greple; |
2
|
|
|
|
|
|
|
|
3
|
16
|
|
|
16
|
|
1521201
|
use strict; |
|
16
|
|
|
|
|
190
|
|
|
16
|
|
|
|
|
503
|
|
4
|
16
|
|
|
16
|
|
98
|
use warnings; |
|
16
|
|
|
|
|
34
|
|
|
16
|
|
|
|
|
915
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
greple - extensible grep with lexical expression and region handling |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 VERSION |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Version 9.08 |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=cut |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
our $VERSION = '9.08'; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 AUTHOR |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Kazumasa Utashiro |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Copyright 1991-2023 Kazumasa Utashiro |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify |
27
|
|
|
|
|
|
|
it under the same terms as Perl itself. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=cut |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
1; # End of App::Greple |