package js_of_ocaml-compiler

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type def =
  1. | Expr of Code.expr
  2. | Phi of {
    1. known : Code.Var.Set.t;
    2. others : bool;
    }
type approx =
  1. | Top
  2. | Values of {
    1. known : Code.Var.Set.t;
    2. others : bool;
    }
type info = {
  1. info_defs : def array;
  2. info_approximation : approx Code.Var.Tbl.t;
  3. info_may_escape : bool array;
}
val f : Code.program -> info
val exact_call : info -> Code.Var.t -> int -> bool