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
commit11ae9e70b66544b37f9c736fb58efd7bc3116461 (patch)
treeb4301c365c59dcad54eaa4b2053dcc4b3406b060 /perl_checker.src/parser_helper.mli
parentb597db85280e00cd639019c345487d1b2ac4ddaf (diff)
downloadperl_checker-11ae9e70b66544b37f9c736fb58efd7bc3116461.tar
perl_checker-11ae9e70b66544b37f9c736fb58efd7bc3116461.tar.gz
perl_checker-11ae9e70b66544b37f9c736fb58efd7bc3116461.tar.bz2
perl_checker-11ae9e70b66544b37f9c736fb58efd7bc3116461.tar.xz
perl_checker-11ae9e70b66544b37f9c736fb58efd7bc3116461.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 :