Errors.Parsing_lThis module contains the type for syntax errors in ACGs.
type t = | MenhirError of intError i is raised on a syntax error with i the number given by Menhir to select the correct message.
| TypeExpected| ArrowExpected| ArrowOrRParenthesisExpected| LessThanExpected| AssociativitySpecExpected| TermNotArrowExpected| InfixMissingFirstArg of string| InfixMissingSecondArg of string| NotAssociative of string| NotInfix of string| PrefixMissingArg of string| UnknownConstant of string| UnknownType of string| UnknownBinder of string| UnknownConstantNorVariable of string| UnknownConstantNorType of string| NotDefAsInfix of string| DuplicatedTerm of string| DuplicatedType of stringval pp : Stdlib.Format.formatter -> t -> unit