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 *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
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
|
1996-02-25 06:45:47 -08:00
|
|
|
|
|
|
|
(* Representation of entry points *)
|
|
|
|
|
|
|
|
type automata_entry =
|
|
|
|
{ auto_name: string;
|
|
|
|
auto_initial_state: int;
|
|
|
|
auto_actions: (int * Syntax.location) list }
|
|
|
|
|
|
|
|
(* The entry point *)
|
|
|
|
|
|
|
|
val make_dfa: Syntax.lexer_definition -> automata_entry list * automata array
|