forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlam_constant.ml
88 lines (82 loc) · 3.39 KB
/
lam_constant.ml
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
(* 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 = { name : string; const : int; non_const : int }
type pointer_info =
| None
| Pt_constructor of constructor_tag
| Pt_assertfalse
| Some of string
let string_of_pointer_info (x : pointer_info) : string option =
match x with
| Some name | Pt_constructor { name; _ } -> Some name
| Pt_assertfalse -> Some "assert_false"
| None -> None
type t =
| Const_js_null
| Const_js_undefined
| Const_js_true
| Const_js_false
| Const_int of { i : int32; comment : pointer_info }
| Const_char of char
| Const_string of { s : string; unicode : bool }
| Const_float of string
| Const_int64 of int64
| Const_pointer of string
| Const_block of int * Lam_tag_info.t * t list
| Const_float_array of string list
| Const_some of t
| Const_module_alias
(* eventually we can remove it, since we know
[constant] is [undefined] or not
*)
let rec eq_approx (x : t) (y : t) =
match x with
| Const_module_alias -> y = Const_module_alias
| Const_js_null -> y = Const_js_null
| Const_js_undefined -> y = Const_js_undefined
| Const_js_true -> y = Const_js_true
| Const_js_false -> y = Const_js_false
| Const_int ix -> ( match y with Const_int iy -> ix.i = iy.i | _ -> false)
| Const_char ix -> ( match y with Const_char iy -> ix = iy | _ -> false)
| Const_string { s = sx; unicode = ux } -> (
match y with
| Const_string { s = sy; unicode = uy } -> sx = sy && ux = uy
| _ -> false)
| Const_float ix -> ( match y with Const_float iy -> ix = iy | _ -> false)
| Const_int64 ix -> ( match y with Const_int64 iy -> ix = iy | _ -> false)
| Const_pointer ix -> (
match y with Const_pointer iy -> ix = iy | _ -> false)
| Const_block (ix, _, ixs) -> (
match y with
| Const_block (iy, _, iys) ->
ix = iy && Ext_list.for_all2_no_exn ixs iys eq_approx
| _ -> false)
| Const_float_array ixs -> (
match y with
| Const_float_array iys ->
Ext_list.for_all2_no_exn ixs iys Ext_string.equal
| _ -> false)
| Const_some ix -> (
match y with Const_some iy -> eq_approx ix iy | _ -> false)
let lam_none : t = Const_js_undefined