Module_pre_es6type shape = | LiteralShape| ArrayShape| ObjectShape of (int * shape Common.smap * shape list) ref| FunctionShape of shape Common.smap ref * shape| RequireShape of module_| UnknownShape of string| ClassShape of shape * shape| NewShape of shape| MixinShape of shape| ClassWithMixinShape of shape * shape| PropertyShape of shape * string| ApplyShape of shape| ElementShape of shapelexical shapes that describe the environment *
val rootclass : shapeconstant shape representing the empty class *
val new_object : shape Common.smap -> shapegenerates an object shape containing a given property map *
val new_class : unit -> shapegenerates a class object shape containing a new prototype object *
val string_of_shape : int -> shape -> stringExample: string_of_shape indent shape *
type parseinfo = Cst_js.program * Parser_js.token listparse info for JS files, containing an AST and a token list with comments *
type parseinfo_map = parseinfo Common.smapmap of file names to parse info cached after parsing *
type moduleinfo = {module_ : module_;local_requires : module_ list;local_bindings : shape Common.smap;}local info computed per module, containing exports and local shapes *
type moduleinfo_map = moduleinfo Common.smapmap of module names to module info cached after analysis *