Code::TidyAll::Result(3pm) | User Contributed Perl Documentation | Code::TidyAll::Result(3pm) |
Code::TidyAll::Result - Result returned from processing a file/source
version 0.83
my $ct = Code::TidyAll->new(...); my $result = $ct->process_file($file); if ($result->error) { ... }
Represents the result of "Code::TidyAll->process_file" and "Code::TidyAll->process_file". A list of these is returned from " Code::TidyAll-"process_paths >>.
This class provides the following methods:
The path that was processed, relative to the root (e.g. "lib/Foo.pm")
A string, one of
Contains the original contents if state is 'tidied' and with some errors (like when a file needs tidying in check-only mode)
Contains the new contents if state is 'tidied'
Contains the error message if state is 'error'
Returns true iff state is not 'error'
Bugs may be submitted at <https://github.com/houseabsolute/perl-code-tidyall/issues>.
The source code repository for Code-TidyAll can be found at <https://github.com/houseabsolute/perl-code-tidyall>.
This software is copyright (c) 2011 - 2022 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
The full text of the license can be found in the LICENSE file included with this distribution.
2022-12-31 | perl v5.36.0 |