summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-12-05 21:28:06 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-12-05 21:28:06 +0000
commita5033a5d21f108fd19f895be85fa1e77218a09b8 (patch)
tree40c012a99b8aed7091b3c6c3c06a9af8e1eda728
parent5746973defebd469eb29960603719c80ec28eb82 (diff)
downloadperl_checker-a5033a5d21f108fd19f895be85fa1e77218a09b8.tar
perl_checker-a5033a5d21f108fd19f895be85fa1e77218a09b8.tar.gz
perl_checker-a5033a5d21f108fd19f895be85fa1e77218a09b8.tar.bz2
perl_checker-a5033a5d21f108fd19f895be85fa1e77218a09b8.tar.xz
perl_checker-a5033a5d21f108fd19f895be85fa1e77218a09b8.zip
fix precedence issue
-rw-r--r--perl_checker.src/parser.mly2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl_checker.src/parser.mly b/perl_checker.src/parser.mly
index b47eb3d..46c859a 100644
--- a/perl_checker.src/parser.mly
+++ b/perl_checker.src/parser.mly
@@ -325,7 +325,7 @@ term:
| ONE_SCALAR_PARA parenthesized {call_one_scalar_para $1 $2.any.expr $1 $2}
| ONE_SCALAR_PARA BRACKET lines BRACKET_END {sp_n($2); new_pesp M_unknown P_tok (call(Deref(I_func, Ident(None, $1.any, raw_pos2pos $1.pos)), [anonymous_sub None $3 $4])) $1 $4} /* eval { foo } */
| ONE_SCALAR_PARA diamond {call_one_scalar_para $1 [$2.any] $1 $2}
-| ONE_SCALAR_PARA {call_one_scalar_para $1 [] $1 $1}
+| ONE_SCALAR_PARA %prec PREC_LOW {call_one_scalar_para $1 [] $1 $1}
| ONE_SCALAR_PARA word argexpr {check_parenthesized_first_argexpr_with_Ident $2.any $3; call_one_scalar_para $1 [call(Deref(I_func, $2.any), $3.any.expr)] $1 $3} /* ref foo $a, $b */
| ONE_SCALAR_PARA hash PKG_SCOPE {sp_0($3); call_one_scalar_para $1 [ Call(Too_complex, [$2.any]) ] $1 $3} /* keys %main:: */
| ONE_SCALAR_PARA BAREWORD {if $2.any = "_" && $1.any.[0] = '-' then new_pesp M_bool P_mul Too_complex $1 $2 else die_rule "syntax error"} /* -e "foo" && -f _ */