summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/common.mli
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-04-28 12:23:18 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-04-28 12:23:18 +0000
commit5086a51d09b7d5333b8b39927dba18f04c249237 (patch)
tree0b6a730e7f3d2c64de6a4d8fee99dfdd307fd35b /perl_checker.src/common.mli
parent457845c8b46fab3811b282877cc88cd67603f732 (diff)
downloadperl_checker-5086a51d09b7d5333b8b39927dba18f04c249237.tar
perl_checker-5086a51d09b7d5333b8b39927dba18f04c249237.tar.gz
perl_checker-5086a51d09b7d5333b8b39927dba18f04c249237.tar.bz2
perl_checker-5086a51d09b7d5333b8b39927dba18f04c249237.tar.xz
perl_checker-5086a51d09b7d5333b8b39927dba18f04c249237.zip
handle bad PO-: comments at the lexical level instead of doing it in the grammar
to have a better error message
Diffstat (limited to 'perl_checker.src/common.mli')
-rw-r--r--perl_checker.src/common.mli1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl_checker.src/common.mli b/perl_checker.src/common.mli
index df09b47..f0cd8f8 100644
--- a/perl_checker.src/common.mli
+++ b/perl_checker.src/common.mli
@@ -142,6 +142,7 @@ val map3 : ('a -> 'b -> 'c -> 'd) -> 'a list -> 'b list -> 'c list -> 'd list
val filter2 : ('a * 'b -> bool) -> 'a list -> 'b list -> 'a list * 'b list
val break_at : ('a -> bool) -> 'a list -> 'a list * 'a list
val break : 'a -> 'a list -> 'a list * 'a list
+val drop_while : ('a -> bool) -> 'a list -> 'a list
val break_at_indice : int -> 'a list -> 'a list * 'a list
val rev_nth : 'a -> 'a list -> int
val getset_nth : 'a list -> int -> ('a -> 'a) -> 'a list