aboutsummaryrefslogtreecommitdiff
path: root/gramlib/plexing.ml
diff options
context:
space:
mode:
authorEnrico Tassi2019-03-25 17:31:55 +0100
committerEnrico Tassi2019-03-29 11:05:17 +0100
commit7eba2dfda86238cb0941edfd7aafb09f566c36d8 (patch)
tree9c1017c90e17d4fc98ecb144ff99d4c8553c1e51 /gramlib/plexing.ml
parent4b9636ffd47ea5a0b99df442047ba03d18422738 (diff)
[parser] initialization based on Loc.t rather than Loc.source
In this way one can also set the current offsets in a file, useful if you are parsing a Coq fragment within a file instead of a full file starting from the first line.
Diffstat (limited to 'gramlib/plexing.ml')
-rw-r--r--gramlib/plexing.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/gramlib/plexing.ml b/gramlib/plexing.ml
index fce5445ad8..c294923a85 100644
--- a/gramlib/plexing.ml
+++ b/gramlib/plexing.ml
@@ -5,7 +5,7 @@
type pattern = string * string
type location_function = int -> Loc.t
-type 'te lexer_func = char Stream.t -> 'te Stream.t * location_function
+type 'te lexer_func = ?loc:Loc.t -> char Stream.t -> 'te Stream.t * location_function
type 'te lexer =
{ tok_func : 'te lexer_func;