summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/parser.mly
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-01-05 12:09:42 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-01-05 12:09:42 +0000
commitc188b39c47235298351866f275ca39b680008521 (patch)
treee8f95e46ec0a69f4db2b96573b5775d195a374da /perl_checker.src/parser.mly
parentef6aec9661171a5bf480d0931a7115c4f2fa5a92 (diff)
downloadperl_checker-c188b39c47235298351866f275ca39b680008521.tar
perl_checker-c188b39c47235298351866f275ca39b680008521.tar.gz
perl_checker-c188b39c47235298351866f275ca39b680008521.tar.bz2
perl_checker-c188b39c47235298351866f275ca39b680008521.tar.xz
perl_checker-c188b39c47235298351866f275ca39b680008521.zip
warn when a PO: comment is not followed by N(...)
Diffstat (limited to 'perl_checker.src/parser.mly')
-rw-r--r--perl_checker.src/parser.mly1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl_checker.src/parser.mly b/perl_checker.src/parser.mly
index e124296..f9b5e9d 100644
--- a/perl_checker.src/parser.mly
+++ b/perl_checker.src/parser.mly
@@ -465,6 +465,7 @@ word_paren:
| BAREWORD_PAREN { new_1esp (Ident(None, $1.any, get_pos $1)) $1 }
| RAW_IDENT_PAREN { new_1esp (to_Ident $1) $1 }
| PO_COMMENT word_paren { po_comment($1); new_esp M_special $2.any $1 $2 }
+| PO_COMMENT { die_rule "N(...) must follow the #-PO: comment, with nothing in between" }
arraylen: ARRAYLEN_IDENT {new_esp M_int (deref_arraylen (to_Ident $1)) $1 $1} | ARRAYLEN scalar {sp_0($2); new_esp M_int (deref_arraylen $2.any ) $1 $1 } | ARRAYLEN bracket_subscript {new_esp M_int (deref_arraylen $2.any) $1 $2}