]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/ocaml/ocaml/contrib/ocamlbuild/glob_lexer.mli
Update
[l4.git] / l4 / pkg / ocaml / ocaml / contrib / ocamlbuild / glob_lexer.mli
1 (***********************************************************************)
2 (*                             ocamlbuild                              *)
3 (*                                                                     *)
4 (*  Nicolas Pouillard, Berke Durak, projet Gallium, INRIA Rocquencourt *)
5 (*                                                                     *)
6 (*  Copyright 2007 Institut National de Recherche en Informatique et   *)
7 (*  en Automatique.  All rights reserved.  This file is distributed    *)
8 (*  under the terms of the Q Public License version 1.0.               *)
9 (*                                                                     *)
10 (***********************************************************************)
11
12
13 (* Original author: Berke Durak *)
14 open Glob_ast
15
16 type token =
17 | ATOM of pattern atom
18 | AND
19 | OR
20 | NOT
21 | LPAR
22 | RPAR
23 | TRUE
24 | FALSE
25 | EOF
26
27 val token : Lexing.lexbuf -> token