Skip to content

Commit b1f7ef1

Browse files
committed
fix
1 parent 7584ef7 commit b1f7ef1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jscomp/ml/predef.ml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ and path_list = Pident ident_list
8484
and path_option = Pident ident_option
8585
and path_result = Pident ident_result
8686
and path_dict = Pident ident_dict
87+
88+
8789
and path_int64 = Pident ident_int64
8890
and path_lazy_t = Pident ident_lazy_t
8991
and path_string = Pident ident_string
@@ -105,7 +107,7 @@ and type_array t = newgenty (Tconstr(path_array, [t], ref Mnil))
105107
and type_list t = newgenty (Tconstr(path_list, [t], ref Mnil))
106108
and type_option t = newgenty (Tconstr(path_option, [t], ref Mnil))
107109
and type_result t1 t2 = newgenty (Tconstr(path_result, [t1; t2], ref Mnil))
108-
and type_dict t = newgenty (Tconstr(path_option, [t], ref Mnil))
110+
and type_dict t = newgenty (Tconstr(path_dict, [t], ref Mnil))
109111

110112
and type_int64 = newgenty (Tconstr(path_int64, [], ref Mnil))
111113
and type_lazy_t t = newgenty (Tconstr(path_lazy_t, [t], ref Mnil))

0 commit comments

Comments
 (0)