| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Class::Load::XS; |
|
2
|
|
|
|
|
|
|
BEGIN { |
|
3
|
13
|
|
|
13
|
|
418970
|
$Class::Load::XS::AUTHORITY = 'cpan:SARTAK'; |
|
4
|
|
|
|
|
|
|
} |
|
5
|
|
|
|
|
|
|
# git description: v0.07-5-gd41f383 |
|
6
|
|
|
|
|
|
|
$Class::Load::XS::VERSION = '0.08'; |
|
7
|
|
|
|
|
|
|
|
|
8
|
13
|
|
|
13
|
|
132
|
use strict; |
|
|
13
|
|
|
|
|
29
|
|
|
|
13
|
|
|
|
|
404
|
|
|
9
|
13
|
|
|
13
|
|
72
|
use warnings; |
|
|
13
|
|
|
|
|
25
|
|
|
|
13
|
|
|
|
|
474
|
|
|
10
|
|
|
|
|
|
|
|
|
11
|
13
|
|
|
13
|
|
20148
|
use Class::Load 0.20; |
|
|
13
|
|
|
|
|
466685
|
|
|
|
13
|
|
|
|
|
737
|
|
|
12
|
|
|
|
|
|
|
|
|
13
|
13
|
|
|
13
|
|
144
|
use XSLoader; |
|
|
13
|
|
|
|
|
28
|
|
|
|
13
|
|
|
|
|
936
|
|
|
14
|
|
|
|
|
|
|
XSLoader::load( |
|
15
|
|
|
|
|
|
|
__PACKAGE__, |
|
16
|
|
|
|
|
|
|
exists $Class::Load::XS::{VERSION} |
|
17
|
|
|
|
|
|
|
? ${ $Class::Load::XS::{VERSION} } |
|
18
|
|
|
|
|
|
|
: (), |
|
19
|
|
|
|
|
|
|
); |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
# ABSTRACT: XS implementation of parts of Class::Load |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__END__ |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=pod |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=encoding UTF-8 |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 NAME |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Class::Load::XS - XS implementation of parts of Class::Load |
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 VERSION |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
version 0.08 |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
use Class::Load; |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
This module provides an XS implementation for portions of L<Class::Load>. See |
|
46
|
|
|
|
|
|
|
L<Class::Load> for API details. |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=for Pod::Coverage is_class_loaded |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 AUTHOR |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Dave Rolsky <autarch@urth.org> |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
This software is Copyright (c) 2011 by Dave Rolsky. |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
This is free software, licensed under: |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The Artistic License 2.0 (GPL Compatible) |
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 CONTRIBUTORS |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=over 4 |
|
65
|
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=item * |
|
67
|
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Jesse Luehrs <doy@tozt.net> |
|
69
|
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=item * |
|
71
|
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Karen Etheridge <ether@cpan.org> |
|
73
|
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
=back |
|
75
|
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=cut |