fix: Call sites in `Main.lean`
This commit is contained in:
parent
c2b7501649
commit
8adab24157
|
@ -43,7 +43,7 @@ partial def loop : MainM Unit := do repeat do
|
||||||
| false => ret.compress
|
| false => ret.compress
|
||||||
IO.println str
|
IO.println str
|
||||||
catch e =>
|
catch e =>
|
||||||
let message ← e.toMessageData.toString
|
let message := e.toString
|
||||||
let error := Lean.toJson ({ error := "main", desc := message }: InteractionError)
|
let error := Lean.toJson ({ error := "main", desc := message }: InteractionError)
|
||||||
IO.println error.compress
|
IO.println error.compress
|
||||||
|
|
||||||
|
@ -60,11 +60,10 @@ unsafe def main (args: List String): IO Unit := do
|
||||||
let (options, imports) := args.partition (·.startsWith "--")
|
let (options, imports) := args.partition (·.startsWith "--")
|
||||||
let coreContext ← options.map (·.drop 2) |>.toArray |> Pantograph.createCoreContext
|
let coreContext ← options.map (·.drop 2) |>.toArray |> Pantograph.createCoreContext
|
||||||
let coreState ← Pantograph.createCoreState imports.toArray
|
let coreState ← Pantograph.createCoreState imports.toArray
|
||||||
let context: Context := {}
|
|
||||||
try
|
try
|
||||||
let coreM := loop.run context |>.run' {}
|
let mainM := loop.run { coreContext } |>.run' { env := coreState.env }
|
||||||
IO.println "ready."
|
IO.println "ready."
|
||||||
discard <| coreM.toIO coreContext coreState
|
mainM
|
||||||
catch ex =>
|
catch ex =>
|
||||||
let message := ex.toString
|
let message := ex.toString
|
||||||
let error := Lean.toJson ({ error := "io", desc := message }: InteractionError)
|
let error := Lean.toJson ({ error := "io", desc := message }: InteractionError)
|
||||||
|
|
Loading…
Reference in New Issue