Add expr.type
This commit is contained in:
parent
5beb911db5
commit
989130ecd2
17
Main.lean
17
Main.lean
|
@ -46,6 +46,10 @@ def execute (command: Command): Subroutine Lean.Json := do
|
||||||
match Lean.fromJson? command.payload with
|
match Lean.fromJson? command.payload with
|
||||||
| .ok args => inspect args
|
| .ok args => inspect args
|
||||||
| .error x => return errorJson x
|
| .error x => return errorJson x
|
||||||
|
| "expr.type" =>
|
||||||
|
match Lean.fromJson? command.payload with
|
||||||
|
| .ok args => expr_type args
|
||||||
|
| .error x => return errorJson x
|
||||||
| "proof.start" =>
|
| "proof.start" =>
|
||||||
match Lean.fromJson? command.payload with
|
match Lean.fromJson? command.payload with
|
||||||
| .ok args => proof_start args
|
| .ok args => proof_start args
|
||||||
|
@ -90,6 +94,19 @@ def execute (command: Command): Subroutine Lean.Json := do
|
||||||
boundExpr? := boundExpr?,
|
boundExpr? := boundExpr?,
|
||||||
module? := module?
|
module? := module?
|
||||||
}: InspectResult)
|
}: InspectResult)
|
||||||
|
expr_type (args: ExprType): Subroutine Lean.Json := do
|
||||||
|
let env ← Lean.MonadEnv.getEnv
|
||||||
|
match syntax_from_str env args.expr with
|
||||||
|
| .error str => return errorI "parsing" str
|
||||||
|
| .ok syn => do
|
||||||
|
match (← syntax_to_expr syn) with
|
||||||
|
| .error str => return errorI "elab" str
|
||||||
|
| .ok expr => do
|
||||||
|
try
|
||||||
|
let format ← Lean.Meta.ppExpr (← Lean.Meta.inferType expr)
|
||||||
|
return Lean.toJson <| ({ type := toString format }: ExprTypeResult)
|
||||||
|
catch exception =>
|
||||||
|
return errorI "typing" (← exception.toMessageData.toString)
|
||||||
proof_start (args: ProofStart): Subroutine Lean.Json := do
|
proof_start (args: ProofStart): Subroutine Lean.Json := do
|
||||||
let state ← get
|
let state ← get
|
||||||
let env ← Lean.MonadEnv.getEnv
|
let env ← Lean.MonadEnv.getEnv
|
||||||
|
|
|
@ -42,6 +42,14 @@ structure InspectResult where
|
||||||
module?: Option String
|
module?: Option String
|
||||||
deriving Lean.ToJson
|
deriving Lean.ToJson
|
||||||
|
|
||||||
|
-- Get the type of an expression
|
||||||
|
structure ExprType where
|
||||||
|
expr: String
|
||||||
|
deriving Lean.FromJson
|
||||||
|
structure ExprTypeResult where
|
||||||
|
type: String
|
||||||
|
deriving Lean.ToJson
|
||||||
|
|
||||||
structure ProofStart where
|
structure ProofStart where
|
||||||
name: Option String -- Identifier of the proof
|
name: Option String -- Identifier of the proof
|
||||||
-- Only one of the fields below may be populated.
|
-- Only one of the fields below may be populated.
|
||||||
|
|
Loading…
Reference in New Issue