File Coverage

blib/lib/Markdent/Event/CodeBlock.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Markdent::Event::CodeBlock;
2              
3 4     4   31 use strict;
  4         11  
  4         128  
4 4     4   22 use warnings;
  4         10  
  4         102  
5 4     4   21 use namespace::autoclean;
  4         9  
  4         25  
6              
7             our $VERSION = '0.38';
8              
9 4     4   297 use Markdent::Types;
  4         11  
  4         57  
10              
11 4     4   101526 use Moose;
  4         11  
  4         45  
12 4     4   30348 use MooseX::StrictConstructor;
  4         10  
  4         40  
13              
14             has code => (
15             is => 'ro',
16             isa => t('Str'),
17             required => 1,
18             );
19              
20             has language => (
21             is => 'ro',
22             isa => t('Str'),
23             predicate => 'has_language',
24             );
25              
26             with 'Markdent::Role::Event' => { event_class => __PACKAGE__ };
27              
28             __PACKAGE__->meta()->make_immutable();
29              
30             1;
31              
32             # ABSTRACT: An event for a code block
33              
34             __END__
35              
36             =pod
37              
38             =encoding UTF-8
39              
40             =head1 NAME
41              
42             Markdent::Event::CodeBlock - An event for a code block
43              
44             =head1 VERSION
45              
46             version 0.38
47              
48             =head1 DESCRIPTION
49              
50             This class represents a block of code
51              
52             =head1 ATTRIBUTES
53              
54             This class has the following attributes:
55              
56             =head2 code
57              
58             The code in the block, including newlines and additional leading space, etc.
59              
60             =head2 language
61              
62             An optional language associated with the block, if one was specified. You can
63             use the C<has_language()> method to see if one is set.
64              
65             =head1 ROLES
66              
67             This class does the L<Markdent::Role::Event> role.
68              
69             =head1 BUGS
70              
71             See L<Markdent> for bug reporting details.
72              
73             Bugs may be submitted at L<https://github.com/houseabsolute/Markdent/issues>.
74              
75             I am also usually active on IRC as 'autarch' on C<irc://irc.perl.org>.
76              
77             =head1 SOURCE
78              
79             The source code repository for Markdent can be found at L<https://github.com/houseabsolute/Markdent>.
80              
81             =head1 AUTHOR
82              
83             Dave Rolsky <autarch@urth.org>
84              
85             =head1 COPYRIGHT AND LICENSE
86              
87             This software is copyright (c) 2020 by Dave Rolsky.
88              
89             This is free software; you can redistribute it and/or modify it under
90             the same terms as the Perl 5 programming language system itself.
91              
92             The full text of the license can be found in the
93             F<LICENSE> file included with this distribution.
94              
95             =cut