From a7c5198b211bb38adc47e1db0eab2070b462ba67 Mon Sep 17 00:00:00 2001 From: Stefan O'Rear Date: Tue, 10 Aug 2010 04:14:51 -0700 Subject: [PATCH] Fix $foo. syntax --- Niecza/Actions.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Niecza/Actions.pm b/Niecza/Actions.pm index 942e7175..731891d6 100644 --- a/Niecza/Actions.pm +++ b/Niecza/Actions.pm @@ -798,7 +798,7 @@ sub dottyop { my ($cl, $M) = @_; } $M->{_ast} = $M->{methodop}{_ast} if $M->{methodop}; - $M->{_ast} = { postfix => $M->{postop}{_ast} } if $M->{postop}; + $M->{_ast} = $M->{postop}{_ast} if $M->{postop}; } sub privop { my ($cl, $M) = @_;