40 lines
1.3 KiB
Standard ML
40 lines
1.3 KiB
Standard ML
(***********************************************************************)
|
|
(* *)
|
|
(* Caml Special Light *)
|
|
(* *)
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
(* *)
|
|
(* Copyright 1995 Institut National de Recherche en Informatique et *)
|
|
(* Automatique. Distributed only by permission. *)
|
|
(* *)
|
|
(***********************************************************************)
|
|
|
|
(* $Id$ *)
|
|
|
|
(* 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 =
|
|
Lexdef of location * (string * (regular_expression * location) list) list
|
|
|
|
(* 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
|