https://github.com/EasyCrypt/easycrypt
Revision 8f33b95ba4e89b25716ca2199a850370bcf5299e authored by Stephane Graham-Lengrand on 07 October 2020, 23:19:47 UTC, committed by Pierre-Yves Strub on 09 October 2020, 08:41:05 UTC
1 parent 3007982
Raw File
Tip revision: 8f33b95ba4e89b25716ca2199a850370bcf5299e authored by Stephane Graham-Lengrand on 07 October 2020, 23:19:47 UTC
First attempt at handling Why3 1.3.X
Tip revision: 8f33b95
ecTerminal.mli
(* --------------------------------------------------------------------
 * Copyright (c) - 2012--2016 - IMDEA Software Institute
 * Copyright (c) - 2012--2018 - Inria
 * Copyright (c) - 2012--2018 - Ecole Polytechnique
 *
 * Distributed under the terms of the CeCILL-C-V1 license
 * -------------------------------------------------------------------- *)

(* -------------------------------------------------------------------- *)
type terminal

type status = [
  | `ST_Ok
  | `ST_Failure of exn
]

type loglevel = EcGState.loglevel

(* -------------------------------------------------------------------- *)
val interactive : terminal -> bool
val next        : terminal -> EcParsetree.prog
val notice      : immediate:bool -> loglevel -> string -> terminal -> unit
val finish      : status -> terminal -> unit
val finalize    : terminal -> unit
val setwidth    : terminal -> int -> unit

(* -------------------------------------------------------------------- *)
val from_channel : ?gcstats:bool -> name:string -> in_channel -> terminal
val from_tty     : unit -> terminal
val from_emacs   : unit -> terminal
back to top