package merlin-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
exception Unknown
type t = {
  1. name : string;
  2. private_def : string list;
  3. public_def : string list;
  4. packages : string list;
  5. keywords : (string * Ocaml_preprocess.Parser_raw.token) list;
}

Definition of an extension (as seen from Lexer and Typer)

type set = string list

Set of extension name

val all : set
val lookup : string -> t option
val from : extensions:string list -> packages:string list -> set
val empty : set