summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/parser_helper.mli
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-12-04 14:21:51 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-12-04 14:21:51 +0000
commit8f48fd94bf41b4c062db2a32803c4abd22b81a33 (patch)
treef0caa15d4584f677dcb9437214574e9cf350b97c /perl_checker.src/parser_helper.mli
parenta329f0c34eb3f9ec1ed4f699c2962ef1cc379a8a (diff)
downloadperl-MDK-Common-8f48fd94bf41b4c062db2a32803c4abd22b81a33.tar
perl-MDK-Common-8f48fd94bf41b4c062db2a32803c4abd22b81a33.tar.gz
perl-MDK-Common-8f48fd94bf41b4c062db2a32803c4abd22b81a33.tar.bz2
perl-MDK-Common-8f48fd94bf41b4c062db2a32803c4abd22b81a33.tar.xz
perl-MDK-Common-8f48fd94bf41b4c062db2a32803c4abd22b81a33.zip
more restricted detection of non-use of if_()-like exprs
Diffstat (limited to 'perl_checker.src/parser_helper.mli')
-rw-r--r--perl_checker.src/parser_helper.mli6
1 files changed, 2 insertions, 4 deletions
diff --git a/perl_checker.src/parser_helper.mli b/perl_checker.src/parser_helper.mli
index d3f5396..a5b0837 100644
--- a/perl_checker.src/parser_helper.mli
+++ b/perl_checker.src/parser_helper.mli
@@ -9,7 +9,6 @@ val var_dollar_ : Types.fromparser
val var_STDOUT : Types.fromparser
val is_var_dollar_ : Types.fromparser -> bool
val is_var_number_match : Types.fromparser -> bool
-val is_call : Types.fromparser -> bool
val is_parenthesized : Types.fromparser -> bool
val un_parenthesize : Types.fromparser -> Types.fromparser
val un_parenthesize_full : Types.fromparser -> Types.fromparser
@@ -62,10 +61,9 @@ val check_hash_subscript :
('a * Types.fromparser) * ('b * (int * int)) -> unit
val check_arrow_needed :
('a * Types.fromparser) * 'b -> 'c * ('d * (int * int)) -> unit
-val check_ternary_para : ('a * Types.fromparser) * ('b * (int * int)) -> unit
val check_ternary_paras :
- ('a * Types.fromparser) * ('b * (int * int)) ->
- ('c * Types.fromparser) * ('d * (int * int)) -> unit
+ Types.fromparser * Types.fromparser * Types.fromparser ->
+ Types.fromparser list
val check_unneeded_var_dollar_ :
('a * Types.fromparser) * ('b * (int * int)) -> unit
val check_unneeded_var_dollar_not :