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
commit70dcfcd34535185dcac19d115f16a295711b267a (patch)
treeb6db2a98f49fdc3399c580192dca726f3fba92fe /perl_checker.src/common.mli
parent7c9690bacb9ae134d735355d4276841abb77a099 (diff)
downloadperl-MDK-Common-70dcfcd34535185dcac19d115f16a295711b267a.tar
perl-MDK-Common-70dcfcd34535185dcac19d115f16a295711b267a.tar.gz
perl-MDK-Common-70dcfcd34535185dcac19d115f16a295711b267a.tar.bz2
perl-MDK-Common-70dcfcd34535185dcac19d115f16a295711b267a.tar.xz
perl-MDK-Common-70dcfcd34535185dcac19d115f16a295711b267a.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