483 lines
18 KiB
Text
483 lines
18 KiB
Text
/-
|
||
Copyright (c) 2017 Microsoft Corporation. All rights reserved.
|
||
Released under Apache 2.0 license as described in the file LICENSE.
|
||
Authors: Luke Nelson, Jared Roesch, Leonardo de Moura, Sebastian Ullrich
|
||
-/
|
||
prelude
|
||
import Init.Control.EState
|
||
import Init.Control.Reader
|
||
import Init.Data.String
|
||
import Init.Data.ByteArray
|
||
import Init.System.IOError
|
||
import Init.System.FilePath
|
||
import Init.System.ST
|
||
|
||
/-- Like https://hackage.haskell.org/package/ghc-Prim-0.5.2.0/docs/GHC-Prim.html#t:RealWorld.
|
||
Makes sure we never reorder `IO` operations.
|
||
|
||
TODO: mark opaque -/
|
||
def IO.RealWorld : Type := Unit
|
||
|
||
/- TODO(Leo): mark it as an opaque definition. Reason: prevent
|
||
functions defined in other modules from accessing `IO.RealWorld`.
|
||
We don't want action such as
|
||
```
|
||
def getWorld : IO (IO.RealWorld) := get
|
||
```
|
||
-/
|
||
def EIO (ε : Type) : Type → Type := EStateM ε IO.RealWorld
|
||
|
||
@[inline] def EIO.catchExceptions {α ε} (x : EIO ε α) (h : ε → EIO Empty α) : EIO Empty α :=
|
||
fun s => match x s with
|
||
| EStateM.Result.ok a s => EStateM.Result.ok a s
|
||
| EStateM.Result.error ex s => h ex s
|
||
|
||
instance (ε : Type) : Monad (EIO ε) := inferInstanceAs (Monad (EStateM ε IO.RealWorld))
|
||
instance (ε : Type) : MonadFinally (EIO ε) := inferInstanceAs (MonadFinally (EStateM ε IO.RealWorld))
|
||
instance (ε : Type) : MonadExceptOf ε (EIO ε) := inferInstanceAs (MonadExceptOf ε (EStateM ε IO.RealWorld))
|
||
instance (α ε : Type) : HasOrelse (EIO ε α) := ⟨MonadExcept.orelse⟩
|
||
instance {ε : Type} {α : Type} [Inhabited ε] : Inhabited (EIO ε α) := inferInstanceAs (Inhabited (EStateM ε IO.RealWorld α))
|
||
|
||
open IO (Error) in
|
||
abbrev IO : Type → Type := EIO Error
|
||
|
||
@[inline] def EIO.toIO {α ε} (f : ε → IO.Error) (x : EIO ε α) : IO α :=
|
||
x.adaptExcept f
|
||
|
||
@[inline] def EIO.toIO' {α ε} (x : EIO ε α) : IO (Except ε α) :=
|
||
EIO.toIO (fun _ => unreachable!) (observing x)
|
||
|
||
@[inline] def IO.toEIO {α ε} (f : IO.Error → ε) (x : IO α) : EIO ε α :=
|
||
x.adaptExcept f
|
||
|
||
/- After we inline `EState.run'`, the closed term `((), ())` is generated, where the second `()`
|
||
represents the "initial world". We don't want to cache this closed term. So, we disable
|
||
the "extract closed terms" optimization. -/
|
||
set_option compiler.extract_closed false in
|
||
@[inline] unsafe def unsafeEIO {ε α : Type} (fn : EIO ε α) : Except ε α :=
|
||
match fn.run () with
|
||
| EStateM.Result.ok a _ => Except.ok a
|
||
| EStateM.Result.error e _ => Except.error e
|
||
|
||
@[inline] unsafe def unsafeIO {α : Type} (fn : IO α) : Except IO.Error α :=
|
||
unsafeEIO fn
|
||
|
||
@[extern "lean_io_timeit"] constant timeit {α : Type} (msg : @& String) (fn : IO α) : IO α
|
||
@[extern "lean_io_allocprof"] constant allocprof {α : Type} (msg : @& String) (fn : IO α) : IO α
|
||
|
||
/- Programs can execute IO actions during initialization that occurs before
|
||
the `main` function is executed. The attribute `[init <action>]` specifies
|
||
which IO action is executed to set the value of an opaque constant.
|
||
|
||
The action `initializing` returns `true` iff it is invoked during initialization. -/
|
||
@[extern "lean_io_initializing"] constant IO.initializing : IO Bool
|
||
|
||
class MonadIO (m : Type → Type) :=
|
||
{ liftIO {α} : IO α → m α }
|
||
|
||
export MonadIO (liftIO)
|
||
|
||
instance (m n) [MonadIO m] [MonadLift m n] : MonadIO n :=
|
||
{ liftIO := fun x => liftM (liftIO x : m _) }
|
||
|
||
instance : MonadIO IO :=
|
||
{ liftIO := id }
|
||
|
||
namespace IO
|
||
|
||
def ofExcept {ε α : Type} [ToString ε] (e : Except ε α) : IO α :=
|
||
match e with
|
||
| Except.ok a => pure a
|
||
| Except.error e => throw (IO.userError (toString e))
|
||
|
||
def lazyPure {α : Type} (fn : Unit → α) : IO α :=
|
||
pure (fn ())
|
||
|
||
/--
|
||
Run `act` in a separate `Task`. This is similar to Haskell's [`unsafeInterleaveIO`](http://hackage.haskell.org/package/base-4.14.0.0/docs/System-IO-Unsafe.html#v:unsafeInterleaveIO),
|
||
except that the `Task` is started eagerly as usual. Thus pure accesses to the `Task` do not influence the impure `act`
|
||
computation.
|
||
Unlike with pure tasks created by `Task.mk`, tasks created by this function will be run even if the last reference
|
||
to the task is dropped. `act` should manually check for cancellation via `IO.checkInterrupt` if it wants to react
|
||
to that. -/
|
||
@[extern "lean_io_as_task"]
|
||
constant asTask {α : Type} (act : IO α) (prio := Task.Priority.default) : IO (Task (Except IO.Error α))
|
||
|
||
/-- See `IO.asTask`. -/
|
||
@[extern "lean_io_map_task"]
|
||
constant mapTask {α β : Type} (f : α → IO β) (t : Task α) (prio := Task.Priority.default) : IO (Task (Except IO.Error β))
|
||
|
||
/-- See `IO.asTask`. -/
|
||
@[extern "lean_io_bind_task"]
|
||
constant bindTask {α β : Type} (t : Task α) (f : α → IO (Task (Except IO.Error β))) (prio := Task.Priority.default) : IO (Task (Except IO.Error β))
|
||
|
||
/-- Check if the task's cancellation flag has been set by calling `IO.cancel` or dropping the last reference to the task. -/
|
||
@[extern "lean_io_check_canceled"] constant checkCanceled : IO Bool
|
||
|
||
/-- Request cooperative cancellation of the task. The task must explicitly call `IO.checkCanceled` to react to the cancellation. -/
|
||
@[extern "lean_io_cancel"] constant cancel {α : Type} : @& Task α → IO Unit
|
||
|
||
/-- Check if the task has finished execution, at which point calling `Task.get` will return immediately. -/
|
||
@[extern "lean_io_has_finished"] constant hasFinished {α : Type} : @& Task α → IO Unit
|
||
|
||
/-- Wait for the task to finish, then return its result. -/
|
||
@[extern "lean_io_wait"] constant wait {α : Type} : Task α → IO α
|
||
|
||
/-- Wait until any of the tasks in the given list has finished, then return its result. -/
|
||
@[extern "lean_io_wait_any"] constant waitAny {α : Type} : @& List (Task α) → IO α
|
||
|
||
inductive FS.Mode
|
||
| read | write | readWrite | append
|
||
|
||
constant FS.Handle : Type := Unit
|
||
|
||
/--
|
||
A pure-Lean abstraction of POSIX streams. We use `Stream`s for the standard streams stdin/stdout/stderr so we can
|
||
capture output of `#eval` commands into memory. -/
|
||
structure FS.Stream :=
|
||
(isEof : IO Bool)
|
||
(flush : IO Unit)
|
||
(read : forall (bytes : USize), IO ByteArray)
|
||
(write : ByteArray → IO Unit)
|
||
(getLine : IO String)
|
||
(putStr : String → IO Unit)
|
||
|
||
namespace Prim
|
||
open FS
|
||
|
||
@[extern "lean_get_stdin"] constant getStdin : IO FS.Stream
|
||
@[extern "lean_get_stdout"] constant getStdout : IO FS.Stream
|
||
@[extern "lean_get_stderr"] constant getStderr : IO FS.Stream
|
||
|
||
@[extern "lean_get_set_stdin"] constant setStdin : FS.Stream → IO FS.Stream
|
||
@[extern "lean_get_set_stdout"] constant setStdout : FS.Stream → IO FS.Stream
|
||
@[extern "lean_get_set_stderr"] constant setStderr : FS.Stream → IO FS.Stream
|
||
|
||
@[specialize] partial def iterate {α β : Type} (a : α) (f : α → IO (Sum α β)) : IO β := do
|
||
let v ← f a
|
||
match v with
|
||
| Sum.inl a => iterate a f
|
||
| Sum.inr b => pure b
|
||
|
||
-- @[export lean_fopen_flags]
|
||
def fopenFlags (m : FS.Mode) (b : Bool) : String :=
|
||
let mode :=
|
||
match m with
|
||
| FS.Mode.read => "r"
|
||
| FS.Mode.write => "w"
|
||
| FS.Mode.readWrite => "r+"
|
||
| FS.Mode.append => "a" ;
|
||
let bin := if b then "b" else "t"
|
||
mode ++ bin
|
||
|
||
@[extern "lean_io_prim_handle_mk"] constant Handle.mk (s : @& String) (mode : @& String) : IO Handle
|
||
@[extern "lean_io_prim_handle_is_eof"] constant Handle.isEof (h : @& Handle) : IO Bool
|
||
@[extern "lean_io_prim_handle_flush"] constant Handle.flush (h : @& Handle) : IO Unit
|
||
@[extern "lean_io_prim_handle_read"] constant Handle.read (h : @& Handle) (bytes : USize) : IO ByteArray
|
||
@[extern "lean_io_prim_handle_write"] constant Handle.write (h : @& Handle) (buffer : @& ByteArray) : IO Unit
|
||
|
||
@[extern "lean_io_prim_handle_get_line"] constant Handle.getLine (h : @& Handle) : IO String
|
||
@[extern "lean_io_prim_handle_put_str"] constant Handle.putStr (h : @& Handle) (s : @& String) : IO Unit
|
||
|
||
@[extern "lean_io_getenv"] constant getEnv (var : @& String) : IO (Option String)
|
||
@[extern "lean_io_realpath"] constant realPath (fname : String) : IO String
|
||
@[extern "lean_io_is_dir"] constant isDir (fname : @& String) : IO Bool
|
||
@[extern "lean_io_file_exists"] constant fileExists (fname : @& String) : IO Bool
|
||
@[extern "lean_io_app_dir"] constant appPath : IO String
|
||
@[extern "lean_io_current_dir"] constant currentDir : IO String
|
||
|
||
end Prim
|
||
|
||
namespace FS
|
||
variables {m : Type → Type} [Monad m] [MonadIO m]
|
||
|
||
def Handle.mk (s : String) (Mode : Mode) (bin : Bool := true) : m Handle :=
|
||
liftIO (Prim.Handle.mk s (Prim.fopenFlags Mode bin))
|
||
|
||
@[inline]
|
||
def withFile {α} (fn : String) (mode : Mode) (f : Handle → m α) : m α :=
|
||
Handle.mk fn mode >>= f
|
||
|
||
/-- returns whether the end of the file has been reached while reading a file.
|
||
`h.isEof` returns true /after/ the first attempt at reading past the end of `h`.
|
||
Once `h.isEof` is true, the reading `h` raises `IO.Error.eof`.
|
||
-/
|
||
def Handle.isEof : Handle → m Bool := liftIO ∘ Prim.Handle.isEof
|
||
def Handle.flush : Handle → m Unit := liftIO ∘ Prim.Handle.flush
|
||
def Handle.read (h : Handle) (bytes : Nat) : m ByteArray := liftIO (Prim.Handle.read h (USize.ofNat bytes))
|
||
def Handle.write (h : Handle) (s : ByteArray) : m Unit := liftIO (Prim.Handle.write h s)
|
||
|
||
def Handle.getLine : Handle → m String := liftIO ∘ Prim.Handle.getLine
|
||
|
||
def Handle.putStr (h : Handle) (s : String) : m Unit :=
|
||
liftIO $ Prim.Handle.putStr h s
|
||
|
||
def Handle.putStrLn (h : Handle) (s : String) : m Unit :=
|
||
h.putStr (s.push '\n')
|
||
|
||
-- TODO: support for binary files
|
||
partial def Handle.readToEnd (h : Handle) : m String :=
|
||
let rec read (s : String) := do
|
||
let line ← h.getLine
|
||
if line.length == 0 then pure s else read (s ++ line)
|
||
read ""
|
||
|
||
-- TODO: support for binary files
|
||
def readFile (fname : String) : m String := do
|
||
let h ← Handle.mk fname Mode.read false
|
||
h.readToEnd
|
||
|
||
partial def lines (fname : String) : m (Array String) := do
|
||
let h ← Handle.mk fname Mode.read false
|
||
let rec read (lines : Array String) := do
|
||
let line ← h.getLine
|
||
if line.length == 0 then
|
||
pure lines
|
||
else if line.back == '\n' then
|
||
let line := line.dropRight 1
|
||
let line := if System.Platform.isWindows && line.back == '\x0d' then line.dropRight 1 else line
|
||
read $ lines.push line
|
||
else
|
||
pure $ lines.push line
|
||
read #[]
|
||
|
||
|
||
namespace Stream
|
||
|
||
def putStrLn (strm : FS.Stream) (s : String) : m Unit :=
|
||
liftIO (strm.putStr (s.push '\n'))
|
||
|
||
end Stream
|
||
|
||
end FS
|
||
|
||
section
|
||
variables {m : Type → Type} [Monad m] [MonadIO m]
|
||
|
||
def getStdin : m FS.Stream := liftIO Prim.getStdin
|
||
def getStdout : m FS.Stream := liftIO Prim.getStdout
|
||
def getStderr : m FS.Stream := liftIO Prim.getStderr
|
||
|
||
/-- Replaces the stdin stream of the current thread and returns its previous value. -/
|
||
def setStdin : FS.Stream → m FS.Stream := liftIO ∘ Prim.setStdin
|
||
|
||
/-- Replaces the stdout stream of the current thread and returns its previous value. -/
|
||
def setStdout : FS.Stream → m FS.Stream := liftIO ∘ Prim.setStdout
|
||
|
||
/-- Replaces the stderr stream of the current thread and returns its previous value. -/
|
||
def setStderr : FS.Stream → m FS.Stream := liftIO ∘ Prim.setStderr
|
||
|
||
def withStdin [MonadFinally m] {α} (h : FS.Stream) (x : m α) : m α := do
|
||
let prev ← setStdin h
|
||
try x finally discard $ setStdin prev
|
||
|
||
def withStdout [MonadFinally m] {α} (h : FS.Stream) (x : m α) : m α := do
|
||
let prev ← setStdout h
|
||
try x finally discard $ setStdout prev
|
||
|
||
def withStderr [MonadFinally m] {α} (h : FS.Stream) (x : m α) : m α := do
|
||
let prev ← setStderr h
|
||
try x finally discard $ setStderr prev
|
||
|
||
def print {α} [ToString α] (s : α) : m Unit := do
|
||
let out ← getStdout
|
||
liftIO $ out.putStr $ toString s
|
||
|
||
def println {α} [ToString α] (s : α) : m Unit := print ((toString s).push '\n')
|
||
|
||
def eprint {α} [ToString α] (s : α) : m Unit := do
|
||
let out ← getStderr
|
||
liftIO $ out.putStr $ toString s
|
||
|
||
def eprintln {α} [ToString α] (s : α) : m Unit := eprint ((toString s).push '\n')
|
||
|
||
@[export lean_io_eprintln]
|
||
private def eprintlnAux (s : String) : IO Unit := eprintln s
|
||
|
||
def getEnv : String → m (Option String) := liftIO ∘ Prim.getEnv
|
||
def realPath : String → m String := liftIO ∘ Prim.realPath
|
||
def isDir : String → m Bool := liftIO ∘ Prim.isDir
|
||
def fileExists : String → m Bool := liftIO ∘ Prim.fileExists
|
||
def appPath : m String := liftIO Prim.appPath
|
||
|
||
def appDir : m String := do
|
||
let p ← appPath
|
||
realPath (System.FilePath.dirName p)
|
||
|
||
def currentDir : m String := liftIO Prim.currentDir
|
||
|
||
end
|
||
|
||
namespace Process
|
||
inductive Stdio
|
||
| piped
|
||
| inherit
|
||
| null
|
||
|
||
def Stdio.toHandleType : Stdio → Type
|
||
| Stdio.piped => FS.Handle
|
||
| Stdio.inherit => Unit
|
||
| Stdio.null => Unit
|
||
|
||
structure StdioConfig :=
|
||
/- Configuration for the process' stdin handle. -/
|
||
(stdin := Stdio.inherit)
|
||
/- Configuration for the process' stdout handle. -/
|
||
(stdout := Stdio.inherit)
|
||
/- Configuration for the process' stderr handle. -/
|
||
(stderr := Stdio.inherit)
|
||
|
||
structure SpawnArgs extends StdioConfig :=
|
||
/- Command name. -/
|
||
(cmd : String)
|
||
/- Arguments for the process -/
|
||
(args : Array String := #[])
|
||
/- Working directory for the process. Inherit from current process if `none`. -/
|
||
(cwd : Option String := none)
|
||
/- Add or remove environment variables for the process. -/
|
||
(env : Array (String × Option String) := #[])
|
||
|
||
-- TODO(Sebastian): constructor must be private
|
||
structure Child (cfg : StdioConfig) :=
|
||
(stdin : cfg.stdin.toHandleType)
|
||
(stdout : cfg.stdout.toHandleType)
|
||
(stderr : cfg.stderr.toHandleType)
|
||
|
||
@[extern "lean_io_process_spawn"] constant spawn (args : SpawnArgs) : IO (Child args.toStdioConfig)
|
||
|
||
@[extern "lean_io_process_child_wait"] constant Child.wait {cfg : @& StdioConfig} : @& Child cfg → IO UInt32
|
||
|
||
structure Output :=
|
||
(exitCode : UInt32)
|
||
(stdout : String)
|
||
(stderr : String)
|
||
|
||
/-- Run process to completion and capture output. -/
|
||
def output (args : SpawnArgs) : IO Output := do
|
||
let child ← spawn { args with stdout := Stdio.piped, stderr := Stdio.piped }
|
||
let stdout ← IO.asTask child.stdout.readToEnd Task.Priority.dedicated
|
||
let stderr ← child.stderr.readToEnd
|
||
let exitCode ← child.wait
|
||
let stdout ← IO.ofExcept stdout.get
|
||
pure { exitCode := exitCode, stdout := stdout, stderr := stderr }
|
||
|
||
/-- Run process to completion and return stdout on success. -/
|
||
def run (args : SpawnArgs) : IO String := do
|
||
let out ← output args
|
||
if out.exitCode != 0 then
|
||
throw $ IO.userError $ "process '" ++ args.cmd ++ "' exited with code " ++ toString out.exitCode;
|
||
pure out.stdout
|
||
|
||
end Process
|
||
|
||
structure AccessRight :=
|
||
(read write execution : Bool := false)
|
||
|
||
def AccessRight.flags (acc : AccessRight) : UInt32 :=
|
||
let r : UInt32 := if acc.read then 0x4 else 0
|
||
let w : UInt32 := if acc.write then 0x2 else 0
|
||
let x : UInt32 := if acc.execution then 0x1 else 0
|
||
r.lor $ w.lor x
|
||
|
||
structure FileRight :=
|
||
(user group other : AccessRight := { })
|
||
|
||
def FileRight.flags (acc : FileRight) : UInt32 :=
|
||
let u : UInt32 := acc.user.flags.shiftLeft 6
|
||
let g : UInt32 := acc.group.flags.shiftLeft 3
|
||
let o : UInt32 := acc.other.flags
|
||
u.lor $ g.lor o
|
||
|
||
@[extern "lean_chmod"] constant Prim.setAccessRights (filename : @& String) (mode : UInt32) : IO Unit
|
||
|
||
def setAccessRights (filename : String) (mode : FileRight) : IO Unit :=
|
||
Prim.setAccessRights filename mode.flags
|
||
|
||
/- References -/
|
||
abbrev Ref (α : Type) := ST.Ref IO.RealWorld α
|
||
|
||
instance {ε} : MonadLift (ST IO.RealWorld) (EIO ε) := ⟨fun x s =>
|
||
match x s with
|
||
| EStateM.Result.ok a s => EStateM.Result.ok a s
|
||
| EStateM.Result.error ex _ => nomatch ex⟩
|
||
|
||
def mkRef {α : Type} {m : Type → Type} [Monad m] [MonadLiftT (ST IO.RealWorld) m] (a : α) : m (IO.Ref α) :=
|
||
ST.mkRef a
|
||
|
||
namespace FS
|
||
namespace Stream
|
||
|
||
@[export lean_stream_of_handle]
|
||
def ofHandle (h : Handle) : Stream := {
|
||
isEof := Prim.Handle.isEof h,
|
||
flush := Prim.Handle.flush h,
|
||
read := Prim.Handle.read h,
|
||
write := Prim.Handle.write h,
|
||
getLine := Prim.Handle.getLine h,
|
||
putStr := Prim.Handle.putStr h,
|
||
}
|
||
|
||
structure Buffer :=
|
||
(data : ByteArray := ByteArray.empty)
|
||
(pos : Nat := 0)
|
||
|
||
def ofBuffer (r : Ref Buffer) : Stream := {
|
||
isEof := do let b ← r.get; pure $ b.pos >= b.data.size,
|
||
flush := pure (),
|
||
read := fun n => r.modifyGet fun b =>
|
||
let data := b.data.extract b.pos (b.pos + n.toNat)
|
||
(data, { b with pos := b.pos + data.size }),
|
||
write := fun data => r.modify fun b =>
|
||
-- set `exact` to `false` so that repeatedly writing to the stream does not impose quadratic run time
|
||
{ b with data := data.copySlice 0 b.data b.pos data.size false, pos := b.pos + data.size },
|
||
getLine := r.modifyGet fun b =>
|
||
let pos := match b.data.findIdx? (start := b.pos) fun u => u == 0 || u = '\n'.toNat.toUInt8 with
|
||
-- include '\n', but not '\0'
|
||
| some pos => if b.data.get! pos == 0 then pos else pos + 1
|
||
| none => b.data.size
|
||
(String.fromUTF8Unchecked $ b.data.extract b.pos pos, { b with pos := pos }),
|
||
putStr := fun s => r.modify fun b =>
|
||
let data := s.toUTF8
|
||
{ b with data := data.copySlice 0 b.data b.pos data.size false, pos := b.pos + data.size },
|
||
}
|
||
end Stream
|
||
|
||
/-- Run action with `stdin` emptied and `stdout+stderr` captured into a `String`. -/
|
||
def withIsolatedStreams {α : Type} (x : IO α) : IO (String × Except IO.Error α) := do
|
||
let bIn ← mkRef { : Stream.Buffer }
|
||
let bOut ← mkRef { : Stream.Buffer }
|
||
let r ← withStdin (Stream.ofBuffer bIn) $
|
||
withStdout (Stream.ofBuffer bOut) $
|
||
withStderr (Stream.ofBuffer bOut) $
|
||
observing x
|
||
let bOut ← bOut.get
|
||
let out := String.fromUTF8Unchecked bOut.data
|
||
pure (out, r)
|
||
|
||
end FS
|
||
end IO
|
||
|
||
universe u
|
||
|
||
namespace Lean
|
||
|
||
/-- Typeclass used for presenting the output of an `#eval` command. -/
|
||
class HasEval (α : Type u) :=
|
||
-- We default `hideUnit` to `true`, but set it to `false` in the direct call from `#eval`
|
||
-- so that `()` output is hidden in chained instances such as for some `m Unit`.
|
||
-- We take `Unit → α` instead of `α` because ‵α` may contain effectful debugging primitives (e.g., `dbgTrace!`)
|
||
(eval : (Unit → α) → forall (hideUnit : optParam Bool true), IO Unit)
|
||
|
||
instance {α : Type u} [Repr α] : HasEval α :=
|
||
⟨fun a _ => IO.println (repr (a ()))⟩
|
||
|
||
instance : HasEval Unit :=
|
||
⟨fun u hideUnit => if hideUnit then pure () else IO.println (repr (u ()))⟩
|
||
|
||
instance {α : Type} [HasEval α] : HasEval (IO α) :=
|
||
⟨fun x _ => do let a ← x (); HasEval.eval (fun _ => a)⟩
|
||
|
||
@[noinline, nospecialize] def runEval {α : Type u} [HasEval α] (a : Unit → α) : IO (String × Except IO.Error Unit) :=
|
||
IO.FS.withIsolatedStreams (HasEval.eval a false)
|
||
|
||
end Lean
|