File tree 3 files changed +21
-6
lines changed
3 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 27
27
type symbol
28
28
(* * Js symbol type only available in ES6 *)
29
29
30
+ type bigint_val
31
+ (* * Js bigint type only available in ES2020 *)
32
+
30
33
type obj_val
31
34
type undefined_val
32
35
(* * This type has only one value `undefined` *)
@@ -45,6 +48,7 @@ type _ t =
45
48
| Function : function_val t
46
49
| Object : obj_val t
47
50
| Symbol : symbol t
51
+ | BigInt : bigint_val t
48
52
49
53
50
54
@@ -58,6 +62,7 @@ type tagged_t =
58
62
| JSFunction of function_val
59
63
| JSObject of obj_val
60
64
| JSSymbol of symbol
65
+ | JSBigInt of bigint_val
61
66
62
67
let classify (x : 'a ) : tagged_t =
63
68
let ty = Js. typeof x in
@@ -66,7 +71,7 @@ let classify (x : 'a) : tagged_t =
66
71
if x == (Obj. magic Js_null. empty) then
67
72
JSNull else
68
73
if ty = " number" then
69
- JSNumber (Obj. magic x ) else
74
+ JSNumber (Obj. magic x) else
70
75
if ty = " string" then
71
76
JSString (Obj. magic x) else
72
77
if ty = " boolean" then
@@ -75,9 +80,11 @@ let classify (x : 'a) : tagged_t =
75
80
if ty = " function" then
76
81
JSFunction (Obj. magic x) else
77
82
if ty = " object" then
78
- JSObject (Obj. magic x)
79
- else
83
+ JSObject (Obj. magic x) else
84
+ if ty = " symbol " then
80
85
JSSymbol (Obj. magic x)
86
+ else
87
+ JSBigInt (Obj. magic x)
81
88
82
89
83
90
let test (type a ) (x : 'a ) (v : a t ) : bool =
@@ -105,5 +112,7 @@ let test (type a) (x : 'a) (v : a t) : bool =
105
112
Js. typeof x = " object"
106
113
| Symbol
107
114
->
108
- Js. typeof x = " symbol"
109
-
115
+ Js. typeof x = " symbol"
116
+ | BigInt
117
+ ->
118
+ Js. typeof x = " bigint"
Original file line number Diff line number Diff line change 28
28
type symbol
29
29
(* * Js symbol type only available in ES6 *)
30
30
31
+ type bigint_val
32
+ (* * Js bigint type only available in ES2020 *)
33
+
31
34
type obj_val
32
35
type undefined_val
33
36
(* * This type has only one value `undefined` *)
@@ -46,6 +49,7 @@ type _ t =
46
49
| Function : function_val t
47
50
| Object : obj_val t
48
51
| Symbol : symbol t
52
+ | BigInt : bigint_val t
49
53
50
54
51
55
val test : 'a -> 'b t -> bool
@@ -66,6 +70,7 @@ type tagged_t =
66
70
| JSFunction of function_val
67
71
| JSObject of obj_val
68
72
| JSSymbol of symbol
73
+ | JSBigInt of bigint_val
69
74
70
75
71
76
val classify : 'a -> tagged_t
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ let string_or_number (type t) x =
10
10
| JSFalse | JSTrue -> false
11
11
| JSFunction _ -> Js. log (" Function" ); false
12
12
| JSObject _ -> false
13
- | JSSymbol _ -> false
13
+ | JSSymbol _ -> false
14
+ | JSBigInt _ -> false
14
15
15
16
let suites = Mt. [
16
17
" int_type" , (fun _ -> Eq (Js. typeof 3 , " number" ) );
You can’t perform that action at this time.
0 commit comments