line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Markdent::Event::EndDocument; |
2
|
|
|
|
|
|
|
|
3
|
35
|
|
|
35
|
|
273
|
use strict; |
|
35
|
|
|
|
|
78
|
|
|
35
|
|
|
|
|
1246
|
|
4
|
35
|
|
|
35
|
|
207
|
use warnings; |
|
35
|
|
|
|
|
79
|
|
|
35
|
|
|
|
|
1194
|
|
5
|
35
|
|
|
35
|
|
195
|
use namespace::autoclean; |
|
35
|
|
|
|
|
76
|
|
|
35
|
|
|
|
|
319
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.39'; |
8
|
|
|
|
|
|
|
|
9
|
35
|
|
|
35
|
|
3310
|
use Moose; |
|
35
|
|
|
|
|
74
|
|
|
35
|
|
|
|
|
330
|
|
10
|
35
|
|
|
35
|
|
234238
|
use MooseX::StrictConstructor; |
|
35
|
|
|
|
|
88
|
|
|
35
|
|
|
|
|
307
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
with 'Markdent::Role::Event' => { event_class => __PACKAGE__ }; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
# ABSTRACT: An event for the end of a document |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=pod |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=encoding UTF-8 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 NAME |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Markdent::Event::EndDocument - An event for the end of a document |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 VERSION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
version 0.39 |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This class represents the end of a document. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 ROLES |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This class does the L<Markdent::Role::Event> role. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 BUGS |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
See L<Markdent> for bug reporting details. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Bugs may be submitted at L<https://github.com/houseabsolute/Markdent/issues>. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
I am also usually active on IRC as 'autarch' on C<irc://irc.perl.org>. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 SOURCE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The source code repository for Markdent can be found at L<https://github.com/houseabsolute/Markdent>. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 AUTHOR |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
Dave Rolsky <autarch@urth.org> |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Dave Rolsky. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
63
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
The full text of the license can be found in the |
66
|
|
|
|
|
|
|
F<LICENSE> file included with this distribution. |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=cut |