summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/parser_helper.ml
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-11-15 12:39:32 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-11-15 12:39:32 +0000
commit2cc500b796e072495769a9fb2ceb4674da29a1eb (patch)
treeca2fcf3ffb6c2cd9e9181ded541f56ef19f2fa23 /perl_checker.src/parser_helper.ml
parent906606a48d333ba799cbd3ba6fe494893ca1f644 (diff)
downloadperl_checker-2cc500b796e072495769a9fb2ceb4674da29a1eb.tar
perl_checker-2cc500b796e072495769a9fb2ceb4674da29a1eb.tar.gz
perl_checker-2cc500b796e072495769a9fb2ceb4674da29a1eb.tar.bz2
perl_checker-2cc500b796e072495769a9fb2ceb4674da29a1eb.tar.xz
perl_checker-2cc500b796e072495769a9fb2ceb4674da29a1eb.zip
*** empty log message ***
Diffstat (limited to 'perl_checker.src/parser_helper.ml')
-rw-r--r--perl_checker.src/parser_helper.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl_checker.src/parser_helper.ml b/perl_checker.src/parser_helper.ml
index e489050..075e110 100644
--- a/perl_checker.src/parser_helper.ml
+++ b/perl_checker.src/parser_helper.ml
@@ -170,7 +170,8 @@ let sp_same (_, (spaces1, _) as ter1) (_, (spaces2, _) as ter2) =
else if spaces2 <> Space_0 then sp_p ter1
let check_word_alone (word, _) =
- if string_of_Ident word = "time" then die_rule "please use time() instead of time";
+ let s = string_of_Ident word in
+ if s = "time" || s = "wantarray" then die_rule (sprintf "please use %s() instead of %s" s s);
word
let check_parenthesized_first_argexpr word ((_, e), (_, (start, _)) as ex) =