Merge commit 'ocaml3102'
[ocaml.git] / ocamlbuild / glob_lexer.mli
blobaa818dda5830f5eead848af0744fc0213e8d9bfa
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 (***********************************************************************)
12 (* $Id$ *)
13 (* Original author: Berke Durak *)
14 open Glob_ast
16 type token =
17 | ATOM of pattern atom
18 | AND
19 | OR
20 | NOT
21 | LPAR
22 | RPAR
23 | TRUE
24 | FALSE
25 | EOF
27 val token : Lexing.lexbuf -> token