From b996526566f140fa8e35bf2bdd4653971cdca0a3 Mon Sep 17 00:00:00 2001 From: Christian Walde Date: Fri, 27 Dec 2024 15:45:51 +0100 Subject: [PATCH] PPI-1.281 Summary: - Implement support for signatures and other parsing features Details: - Framework for recognition of parsing feature activation via: - `use $PERL_VERSION` in code - `use feature` in code - `use $Common::CPAN::Module` in code - PPI::Document->new( feature_mods => ... ) - PPI::Document->new( custom_feature_includes => ... ) - PPI::Document->new( custom_feature_include_cb => ... ) - $ENV{PPI_CUSTOM_FEATURE_INCLUDES} - Added ability to parse features: - signatures, as PPI::Structure::Signature - try catch, as PPI::Statement::Compound --- Changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changes b/Changes index 24a5a389..b57d915d 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for Perl extension PPI -{{$NEXT}} +1.281 2024-12-27 14:44:47Z Summary: - Implement support for signatures and other parsing features