File Coverage

blib/lib/Data/Sah/Compiler/perl/TH/any.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1              
2             use 5.010;
3 2     2   38 use strict;
  2         6  
4 2     2   9 use warnings;
  2         7  
  2         34  
5 2     2   8 #use Log::Any '$log';
  2         4  
  2         46  
6              
7             use Mo qw(build default);
8 2     2   9 use Role::Tiny::With;
  2         4  
  2         9  
9 2     2   490  
  2         4  
  2         89  
10             # Mo currently doesn't support multiple classes in 'extends'
11             #extends
12             # 'Data::Sah::Compiler::perl::TH',
13             # 'Data::Sah::Compiler::Prog::TH::any';
14              
15             use parent (
16             'Data::Sah::Compiler::perl::TH',
17 2         16 'Data::Sah::Compiler::Prog::TH::any',
18             );
19 2     2   10  
  2         4  
20             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
21             our $DATE = '2022-09-30'; # DATE
22             our $DIST = 'Data-Sah'; # DIST
23             our $VERSION = '0.913'; # VERSION
24              
25             1;
26             # ABSTRACT: perl's type handler for type "any"
27              
28              
29             =pod
30              
31             =encoding UTF-8
32              
33             =head1 NAME
34              
35             Data::Sah::Compiler::perl::TH::any - perl's type handler for type "any"
36              
37             =head1 VERSION
38              
39             This document describes version 0.913 of Data::Sah::Compiler::perl::TH::any (from Perl distribution Data-Sah), released on 2022-09-30.
40              
41             =for Pod::Coverage ^(clause_.+|superclause_.+)$
42              
43             =head1 HOMEPAGE
44              
45             Please visit the project's homepage at L<https://metacpan.org/release/Data-Sah>.
46              
47             =head1 SOURCE
48              
49             Source repository is at L<https://github.com/perlancar/perl-Data-Sah>.
50              
51             =head1 AUTHOR
52              
53             perlancar <perlancar@cpan.org>
54              
55             =head1 CONTRIBUTING
56              
57              
58             To contribute, you can send patches by email/via RT, or send pull requests on
59             GitHub.
60              
61             Most of the time, you don't need to build the distribution yourself. You can
62             simply modify the code, then test via:
63              
64             % prove -l
65              
66             If you want to build the distribution (e.g. to try to install it locally on your
67             system), you can install L<Dist::Zilla>,
68             L<Dist::Zilla::PluginBundle::Author::PERLANCAR>,
69             L<Pod::Weaver::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
70             Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps required beyond
71             that are considered a bug and can be reported to me.
72              
73             =head1 COPYRIGHT AND LICENSE
74              
75             This software is copyright (c) 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012 by perlancar <perlancar@cpan.org>.
76              
77             This is free software; you can redistribute it and/or modify it under
78             the same terms as the Perl 5 programming language system itself.
79              
80             =head1 BUGS
81              
82             Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Data-Sah>
83              
84             When submitting a bug or request, please include a test-file or a
85             patch to an existing test-file that illustrates the bug or desired
86             feature.
87              
88             =cut