module Exclude:sig
..end
This modules defines the types related to exlusion as stored in files.
exception Exception of (int * string)
The exception raised by either the lexer, or the parser.
type
t =
| |
Name of |
(* | The exclusion is specified through an exact name. | *) |
| |
Regexp of |
(* | The exclusion is specified through a regular expression over names. | *) |
The type of an exclusion.
type
file = {
|
path : |
(* | The path to the file. | *) |
|
exclusions : |
(* | The list of exclusions. | *) |
}
The type describing the contents of an exclusion file.