https://github.com/EasyCrypt/easycrypt
Revision 3c1476b648e95e00b886cd7986bada35064ca44e authored by Alley Stoughton on 17 May 2022, 13:54:38 UTC, committed by Pierre-Yves Strub on 17 May 2022, 14:43:37 UTC
Former printer was using an invalid priority for projections.

Fixes #200
1 parent 24b0ce7
Raw File
Tip revision: 3c1476b648e95e00b886cd7986bada35064ca44e authored by Alley Stoughton on 17 May 2022, 13:54:38 UTC
Fix pretty-printing of projections.
Tip revision: 3c1476b
ecHiPredicates.mli
(* -------------------------------------------------------------------- *)
open EcLocation
open EcSymbols
open EcParsetree

(* -------------------------------------------------------------------- *)
type tperror =
| TPE_Typing of EcTyping.tyerror
| TPE_TyNotClosed
| TPE_DuplicatedConstr of symbol

exception TransPredError of EcLocation.t * EcEnv.env * tperror

val tperror : EcLocation.t -> EcEnv.env -> tperror -> 'a

(* -------------------------------------------------------------------- *)
val trans_preddecl : EcEnv.env -> ppredicate located -> EcDecl.operator
back to top