Module Autofonce_m4.M4Types
type location = {
file : string;
line : int;
char : int;
}
type token =
| SHELL of string
| IDENT of string
| ONE_ARG of string
| FIRST_ARG of string
| NEXT_ARG of string
| LAST_ARG of string
| EOF
and kind =
| Macro of string * arg list
| Shell of string
and arg = {
arg : string;
arg_loc : location;
}