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

  • SEARCH
  • Home
  • 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

Is there an easy-to-use python module that'd do english or finnish text validation? It'd
I use Module Autoloader to autoload resources (forms, Doctrine models etc.). I do not
I wanted to use winreg module of python for working with windows registry. But
I want to use a module as a singleton referenced in other modules. It
I trying to use the module pattern with JS. But when I call HM.init()
I have 2 perl modules every module use the second one i.e Module1.pm use
I'm not going to use other module like request , how about writing this
I am implementing this hoemwork functionality using Ocaml: Not allowed to use List module
Situation: In Drupal, when you use Views module, it restricts to display Search Form
I use the module mechanize in order to log in a site. When I

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.