line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
### Conflict.pm --- Tree::Range::RB, but overwrite-protected -*- Perl -*- |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
### Ivan Shmakov, 2013 |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
## To the extent possible under law, the author(s) have dedicated all |
6
|
|
|
|
|
|
|
## copyright and related and neighboring rights to this software to the |
7
|
|
|
|
|
|
|
## public domain worldwide. This software is distributed without any |
8
|
|
|
|
|
|
|
## warranty. |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
## You should have received a copy of the CC0 Public Domain Dedication |
11
|
|
|
|
|
|
|
## along with this software. If not, see |
12
|
|
|
|
|
|
|
## . |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
### Code: |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
package Tree::Range::RB::Conflict; |
17
|
|
|
|
|
|
|
|
18
|
3
|
|
|
3
|
|
4073
|
use strict; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
391
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
our $VERSION = 0.22; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
require Tree::Range::conflict; |
23
|
|
|
|
|
|
|
require Tree::Range::RB; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
push (our @ISA, qw (Tree::Range::conflict Tree::Range::RB)); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
### Emacs trailer |
30
|
|
|
|
|
|
|
## Local variables: |
31
|
|
|
|
|
|
|
## coding: us-ascii |
32
|
|
|
|
|
|
|
## End: |
33
|
|
|
|
|
|
|
### Conflict.pm ends here |