aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/loc.mli
diff options
context:
space:
mode:
authorGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-01-14 01:27:40 +0100
committerGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-04-24 23:58:22 +0200
commit6d9e008ffd81bbe927e3442fb0c37269ed25b21f (patch)
tree059ceb889a68c3098d7eeb1b9549999ca8127135 /lib/loc.mli
parent846b74275511bd89c2f3abe19245133050d2199c (diff)
[location] Use Loc.located for constr_expr.
This is the second patch, which is a bit more invasive. We reasoning is similar to the previous patch. Code is not as clean as it could as we would need to convert `glob_constr` to located too, then a few parts could just map the location.
Diffstat (limited to 'lib/loc.mli')
-rw-r--r--lib/loc.mli5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/loc.mli b/lib/loc.mli
index fef1d8938..7fc8efaa8 100644
--- a/lib/loc.mli
+++ b/lib/loc.mli
@@ -61,6 +61,11 @@ type 'a located = t * 'a
val to_pair : 'a located -> t * 'a
val tag : ?loc:t -> 'a -> 'a located
+val with_loc : (loc:t -> 'a -> 'b) -> 'a located -> 'b
+
+val map : ('a -> 'b) -> 'a located -> 'b located
+val map_with_loc : (loc:t -> 'a -> 'b) -> 'a located -> 'b located
+
val located_fold_left : ('a -> 'b -> 'a) -> 'a -> 'b located -> 'a
val down_located : ('a -> 'b) -> 'a located -> 'b