package coq-lsp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = private
  1. | Yes of Lang.Range.t
    (*

    Location of the last token in the document

    *)
  2. | Stopped of Lang.Range.t
    (*

    Location of the last valid token

    *)
  3. | Failed of Lang.Range.t
    (*

    Critical failure, like an anomaly

    *)
  4. | FailedPermanent of Lang.Range.t
    (*

    Temporal Coq hack, avoids any computation

    *)
val is_completed : t -> bool