Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3407792
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T05:47:41+00:00 2026-05-18T05:47:41+00:00

When I use $module->prune( ‘PPI::Token::Whitespace’ ); and save the results in $file is there

  • 0

When I use “$module->prune( ‘PPI::Token::Whitespace’ );” and save the results in $file is there an ease way back to working code for the saved code? I tried “Perl::Tidy” and it looks much better after this but id does not fix all.

#!/usr/bin/env perl
use warnings;
use 5.012;
use PPI;
my $file = 'my_file.pm';

my $module = PPI::Document->new( $file );
$module->prune( 'PPI::Token::Pod' );
$module->prune( 'PPI::Token::Comment' );
$module->prune( 'PPI::Token::Whitespace' );
# ...
# ...
$module->save( $file ) or die $!;

edit:

I am no longer able to reconstruct my code that I had in the first place. With prune-whitespace enabled I could use something like this

$a = $module->find( sub { 
    $_[1]->isa('PPI::Statement') and
    $_[1]->content eq q(if($@){$have_Term_ReadKey=0;$have_Term_Size=1;eval'require "Term/Size.pm"';if($@){$have_Term_Size=0;}})
});

instead of

$a = $module->find( sub { 
    $_[1]->isa('PPI::Statement') and
    $_[1]->schild(0)->content eq q(if) and
    $_[1]->schild(1)->isa('PPI::Something') and
    ...
    ...
});

to find a point to append something.
But know after retrying I think it can not work (apart from the fact, that I can not restore the code without withespaces).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T05:47:41+00:00Added an answer on May 18, 2026 at 5:47 am

    Some whitespace is significant and in general you will break your code if you remove it:

    use PPI;
    $document = PPI::Document->new(\'sub sq{$_[0]**2}');
    $document->prune('PPI::Token::Whitespace');
    print $document->serialize;
    

    The output of this program is:

    subsq{$_[0]**2}
    

    Oops. There’s nothing Perl::Tidy can do about that.


    It would be safe (I think — can’t think of a counterexample) to remove the top-level whitespace

    # just prune top-level whitespace
    $document->prune(  sub { $_[1]->parent->isa('PPI::Document') 
                             and $_[1]->isa('PPI::Token::Whitespace') } );
    

    Enumerating all the other rules (like “whitespace between two PPI::Token::Word elements is not safe to remove”) sounds like a hard problem, though.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am attempting to use the 'tempfile' module for manipulating and creating text files.
When building a multi-lingual website (with ASP.NET web forms), I'll use an HTTP module
I have a python module that makes use of a huge dictionary global variable,
I have a Perl module that I would like to use from Java. Is
I have been trying to use the Perl utility/module "prove" as a test harness
Say I only needed to use findall() from the re module, is it more
I'm developing a Linux driver loadable module and I have to use another device
I'm trying to find a markdown interpreter class/module that I can use in a
in Perl, when I do use <module name> <ver>; , the system finds the
I'm developing a Django app, and I'm trying to use Python's logging module for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.