1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* The shallow abstract syntax *)
|
|
|
|
|
|
|
|
type location =
|
1998-04-23 01:24:50 -07:00
|
|
|
{ start_pos: int;
|
|
|
|
end_pos: int;
|
|
|
|
start_line: int;
|
|
|
|
start_col: int }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
type regular_expression =
|
|
|
|
Epsilon
|
1997-04-15 12:18:03 -07:00
|
|
|
| Characters of int list
|
1995-05-04 03:15:53 -07:00
|
|
|
| Sequence of regular_expression * regular_expression
|
|
|
|
| Alternative of regular_expression * regular_expression
|
|
|
|
| Repetition of regular_expression
|
|
|
|
|
|
|
|
type lexer_definition =
|
1995-08-25 06:54:14 -07:00
|
|
|
{ header: location;
|
2002-01-04 02:01:50 -08:00
|
|
|
entrypoints: ((string * unit) * (regular_expression * location) list) list;
|
1995-08-25 06:54:14 -07:00
|
|
|
trailer: location }
|