summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/parser_helper.mli
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-04-24 19:17:03 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-04-24 19:17:03 +0000
commit662cfb91ccb8a61683790b76b643e966ac005e8d (patch)
tree1686343a0aabb0b12c8ccd510b7c81103995f203 /perl_checker.src/parser_helper.mli
parenta8c17fafaed296f970c218cec4ffe3ba72a9cb7d (diff)
downloadperl-MDK-Common-662cfb91ccb8a61683790b76b643e966ac005e8d.tar
perl-MDK-Common-662cfb91ccb8a61683790b76b643e966ac005e8d.tar.gz
perl-MDK-Common-662cfb91ccb8a61683790b76b643e966ac005e8d.tar.bz2
perl-MDK-Common-662cfb91ccb8a61683790b76b643e966ac005e8d.tar.xz
perl-MDK-Common-662cfb91ccb8a61683790b76b643e966ac005e8d.zip
- handle empty prototypes
- check number of parameters in method calls (ignoring empty overloaded methods) - allow non-empty prototypes for methods not using @_
Diffstat (limited to 'perl_checker.src/parser_helper.mli')
-rw-r--r--perl_checker.src/parser_helper.mli6
1 files changed, 5 insertions, 1 deletions
diff --git a/perl_checker.src/parser_helper.mli b/perl_checker.src/parser_helper.mli
index 03d9af9..77fef90 100644
--- a/perl_checker.src/parser_helper.mli
+++ b/perl_checker.src/parser_helper.mli
@@ -149,9 +149,13 @@ val to_Local :
Types.fromparser Types.prio_anyexpr Types.any_spaces_pos ->
Types.fromparser
val sub_declaration :
- Types.fromparser * string -> Types.fromparser list -> Types.fromparser
+ Types.fromparser * string option ->
+ Types.fromparser list -> Types.fromparser
val anonymous_sub :
+ string option ->
Types.fromparser list Types.any_spaces_pos -> Types.fromparser
+val call_with_same_para_special : Types.fromparser -> Types.fromparser
+val remove_call_with_same_para_special : Types.fromparser -> Types.fromparser
val cook_call_op :
string -> Types.fromparser list -> int * int -> Types.fromparser
val to_Call_op :