package coq-lsp

  1. Overview
  2. Docs
Language Server Protocol native server for Coq

Install

Dune Dependency

Authors

Maintainers

Sources

coq-lsp-0.1.4.v8.16.tbz
sha256=50df59eafc5b24a881c1a1dda6f6032b1da35b9b6ade7cb9e39968def9319508
sha512=e1d383b6802758cdbe5cbc6278af275d7951acd78224cdcfe622428942e84366ca283bf375d6e535ad7e8d8e847df84bd763bb2a263fc457dc5aead386c2836d

doc/coq-lsp.coq/Coq/Goals/index.html

Module Coq.GoalsSource

Sourcetype 'a hyp = {
  1. names : string list;
    (*

    This will become Names.Id.t list in 0.2.0

    *)
  2. def : 'a option;
  3. ty : 'a;
}
Sourcetype info = {
  1. evar : Evar.t;
  2. name : Names.Id.t option;
}
Sourcetype 'a reified_goal = {
  1. info : info;
  2. ty : 'a;
  3. hyps : 'a hyp list;
}
Sourceval map_reified_goal : f:('a -> 'b) -> 'a reified_goal -> 'b reified_goal
Sourcetype 'a goals = {
  1. goals : 'a list;
  2. stack : ('a list * 'a list) list;
  3. bullet : Pp.t option;
  4. shelf : 'a list;
  5. given_up : 'a list;
}
Sourceval map_goals : f:('a -> 'b) -> 'a goals -> 'b goals
Sourcetype reified_pp = Pp.t reified_goal goals
Sourceval reify : ppx:(Environ.env -> Evd.evar_map -> EConstr.t -> 'a) -> State.Proof.t -> 'a reified_goal goals

Stm-independent goal processor

OCaml

Innovation. Community. Security.