package coq-lsp

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

Install

Dune Dependency

Authors

Maintainers

Sources

coq-lsp-0.1.5.8.16.tbz
sha256=5a0819d6ceb18cf031ece2c466eefd27f018d85c1c7472038bbb7c2663714b6e
sha512=be97b25db922014681dce75a68566b887f692c60208b698f03ce8b2fc0c1a2eab5c0c563d698eeb1d21dea5405468e958e67cce9a6c94a3106529f1b4ebfce13

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. hyps : 'a hyp list;
  3. ty : 'a;
}
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.