31 lines
1.2 KiB
OCaml
31 lines
1.2 KiB
OCaml
(***********************************************************************)
|
|
(* *)
|
|
(* 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 =
|
|
{ header: location;
|
|
entrypoints: (string * (regular_expression * location) list) list;
|
|
trailer: location }
|
|
|