line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::Greple; |
2
|
|
|
|
|
|
|
|
3
|
16
|
|
|
16
|
|
2135809
|
use strict; |
|
16
|
|
|
|
|
196
|
|
|
16
|
|
|
|
|
499
|
|
4
|
16
|
|
|
16
|
|
132
|
use warnings; |
|
16
|
|
|
|
|
51
|
|
|
16
|
|
|
|
|
900
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
greple - extensible grep with lexical expression and region handling |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 VERSION |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Version 9.07 |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=cut |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
our $VERSION = '9.07'; |
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 |