package wax-lib

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Typing_env.TblSource

Sourcetype 'a t = {
  1. kind : string;
  2. namespace : Namespace.t;
  3. tbl : (string, 'a) Hashtbl.t;
  4. used : (string, origin) Hashtbl.t;
  5. current : origin ref;
  6. hover : 'a -> hover_target option;
}