Module Ocamlbuild_pack.Glob_ast

exception Parse_error of string
type pattern =
| Epsilon
| Star of pattern
| Class of character_class
| Concat of pattern * pattern
| Union of pattern list
| Word of string
and character_class = (char * char) Bool.boolean
type !'pattern atom =
| Constant of string
| Pattern of 'pattern