forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlam_constant.mli
61 lines (55 loc) · 2.14 KB
/
lam_constant.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
(* Copyright (C) 2018 - Hongbo Zhang, Authors of ReScript
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* In addition to the permissions granted to you by the LGPL, you may combine
* or link a "work that uses the Library" with a publicly distributed version
* of this file to produce a combined library or application, then distribute
* that combined work under the terms of your choosing, with no requirement
* to comply with the obligations normally placed on you by section 4 of the
* LGPL version 3 (or the corresponding section of a later version of the LGPL
* should you choose to use a later version).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
type constructor_tag = {
cstr_name: Ast_untagged_variants.tag;
const: int;
non_const: int;
}
type pointer_info =
| None
| Pt_constructor of constructor_tag
| Pt_assertfalse
| Some of string
val string_of_pointer_info : pointer_info -> string option
type t =
| Const_js_null
| Const_js_undefined of {is_unit: bool}
| Const_js_true
| Const_js_false
| Const_int of {i: int32; comment: pointer_info}
| Const_char of int
| Const_string of {s: string; unicode: bool}
| Const_float of string
| Const_int64 of int64
| Const_bigint of bool * string
| Const_pointer of string
| Const_block of int * Lambda.tag_info * t list
| Const_float_array of string list
| Const_some of t
(* eventually we can remove it, since we know
[constant] is [undefined] or not
*)
| Const_module_alias
val eq_approx : t -> t -> bool
val lam_none : t