1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Caml Special Light *)
|
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1995 Institut National de Recherche en Informatique et *)
|
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* The shallow abstract syntax *)
|
|
|
|
|
|
|
|
type location =
|
|
|
|
Location of int * int
|
|
|
|
|
|
|
|
type regular_expression =
|
|
|
|
Epsilon
|
|
|
|
| Characters of char list
|
|
|
|
| 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;
|
|
|
|
entrypoints: (string * (regular_expression * location) list) list;
|
|
|
|
trailer: location }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
(* Representation of automata *)
|
|
|
|
|
|
|
|
type automata =
|
|
|
|
Perform of int
|
|
|
|
| Shift of automata_trans * automata_move array
|
|
|
|
and automata_trans =
|
|
|
|
No_remember
|
|
|
|
| Remember of int
|
|
|
|
and automata_move =
|
|
|
|
Backtrack
|
|
|
|
| Goto of int
|