swh:1:snp:ca722f838562be139d7880d2b37d9db111694bf0
Raw File
Tip revision: 701f4f03c094eb2441f511fed1df042080fdf34e authored by Cameron Low on 20 January 2023, 18:18:02 UTC
Unify created variables correctly.
Tip revision: 701f4f0
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