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
|
2002-10-28 08:46:50 -08:00
|
|
|
| Characters of Cset.t
|
|
|
|
| Eof
|
1995-05-04 03:15:53 -07:00
|
|
|
| Sequence of regular_expression * regular_expression
|
|
|
|
| Alternative of regular_expression * regular_expression
|
|
|
|
| Repetition of regular_expression
|
2002-10-28 08:46:50 -08:00
|
|
|
| Bind of regular_expression * string
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2002-10-28 08:46:50 -08:00
|
|
|
type ('arg,'action) entry =
|
|
|
|
{name:string ;
|
|
|
|
shortest : bool ;
|
|
|
|
args : 'arg ;
|
|
|
|
clauses : (regular_expression * 'action) list}
|
|
|
|
|
|
|
|
type lexer_definition =
|
1995-08-25 06:54:14 -07:00
|
|
|
{ header: location;
|
2002-12-09 02:44:46 -08:00
|
|
|
entrypoints: ((string list, location) entry) list;
|
1995-08-25 06:54:14 -07:00
|
|
|
trailer: location }
|