Module Grammars.Term_sequence_parser
type location = Stdlib.Lexing.position * Stdlib.Lexing.positiontype associativity = | Left| Right| NonAss
type term = | Var of string| Cst of string| App of term * term| Abs of string * term
type token = | Term of term| Op of string * fixity
val to_string : term -> stringmodule SMap : Stdlib.Map.S with type key = string