Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Parse and ignore use vXXX
  • Loading branch information
sorear committed Dec 2, 2010
1 parent e7cb374 commit 55c766a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Niecza/Actions.pm
Expand Up @@ -85,6 +85,9 @@ sub nofun { }
sub curlycheck { }
sub pod_comment { }
sub infixstopper { }
sub vnum { }
sub version { }
sub version__S_v { }

sub category { }
sub category__S_category { }
Expand Down Expand Up @@ -2388,6 +2391,10 @@ sub statement_control__S_for { my ($cl, $M) = @_;
}

sub statement_control__S_use { my ($cl, $M) = @_;
if ($M->{version}) {
return;
}

my $name = $M->{module_name}{_ast}{name};
my $args = $M->{arglist} ? $M->{arglist}{_ast} : [];

Expand Down

0 comments on commit 55c766a

Please sign in to comment.