line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package CORBA::XPIDL;
|
3
|
|
|
|
|
|
|
|
4
|
1
|
|
|
1
|
|
713
|
use strict;
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
36
|
|
5
|
1
|
|
|
1
|
|
6
|
use warnings;
|
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
57
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.21';
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
This module is used by the following scripts :
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=over 4
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=item L
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=item L
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=item L
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=back
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 AUTHORS
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
The original version (C language) is mozilla.org code.
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Port to Perl by Francois Perrad, francois.perrad@gadz.org
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Copyright 2004-2007, Francois Perrad.
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
34
|
|
|
|
|
|
|
it under the same terms as Perl itself.
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
1;
|
39
|
|
|
|
|
|
|
|