| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | # | 
| 2 |  |  |  |  |  |  | # This file is part of App-PythonToPerl | 
| 3 |  |  |  |  |  |  | # | 
| 4 |  |  |  |  |  |  | # This software is Copyright (c) 2023 by Auto-Parallel Technologies, Inc. | 
| 5 |  |  |  |  |  |  | # | 
| 6 |  |  |  |  |  |  | # This is free software, licensed under: | 
| 7 |  |  |  |  |  |  | # | 
| 8 |  |  |  |  |  |  | #   The GNU General Public License, Version 3, June 2007 | 
| 9 |  |  |  |  |  |  | # | 
| 10 |  |  |  |  |  |  | # [[[ HEADER ]]] | 
| 11 |  |  |  |  |  |  | # ABSTRACT: a single-line comment string wrapped in """double quotes""" | 
| 12 |  |  |  |  |  |  | #use RPerl; | 
| 13 |  |  |  |  |  |  | package Python::CommentDoubleQuotes; | 
| 14 | 1 |  |  | 1 |  | 7 | use strict; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 28 |  | 
| 15 | 1 |  |  | 1 |  | 4 | use warnings; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 50 |  | 
| 16 |  |  |  |  |  |  | our $VERSION = 0.001_000; | 
| 17 |  |  |  |  |  |  |  | 
| 18 |  |  |  |  |  |  | # [[[ OO INHERITANCE ]]] | 
| 19 | 1 |  |  | 1 |  | 5 | use parent qw(Python::Comment); | 
|  | 1 |  |  |  |  | 14 |  | 
|  | 1 |  |  |  |  | 5 |  | 
| 20 | 1 |  |  | 1 |  | 52 | use Python::Comment; | 
|  | 1 |  |  |  |  | 4 |  | 
|  | 1 |  |  |  |  | 17 |  | 
| 21 |  |  |  |  |  |  |  | 
| 22 |  |  |  |  |  |  | # [[[ CRITICS ]]] | 
| 23 |  |  |  |  |  |  | ## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls)  # USER DEFAULT 1: allow numeric values & print op | 
| 24 |  |  |  |  |  |  | ## no critic qw(RequireInterpolationOfMetachars)  # USER DEFAULT 2: allow single-quoted control characters & sigils | 
| 25 |  |  |  |  |  |  | ## no critic qw(ProhibitConstantPragma ProhibitMagicNumbers)  # USER DEFAULT 3: allow constants | 
| 26 |  |  |  |  |  |  |  | 
| 27 |  |  |  |  |  |  | # [[[ INCLUDES ]]] | 
| 28 | 1 |  |  | 1 |  | 4 | use Perl::Types; | 
|  | 1 |  |  |  |  | 2 |  | 
|  | 1 |  |  |  |  | 394 |  | 
| 29 |  |  |  |  |  |  |  | 
| 30 |  |  |  |  |  |  | # [[[ OO PROPERTIES ]]] | 
| 31 |  |  |  |  |  |  | our hashref $properties = { | 
| 32 |  |  |  |  |  |  | component_type => my string $TYPED_component_type = 'Python::CommentDoubleQuotes', | 
| 33 |  |  |  |  |  |  | # all other properties inherited from Python::Comment | 
| 34 |  |  |  |  |  |  | }; | 
| 35 |  |  |  |  |  |  |  | 
| 36 |  |  |  |  |  |  | # [[[ SUBROUTINES & OO METHODS ]]] | 
| 37 |  |  |  |  |  |  |  | 
| 38 |  |  |  |  |  |  | 1; |