@@ -29143,6 +29143,26 @@ let handle_config (config : Parsetree.expression option) =
29143
29143
U.invalid_config config
29144
29144
| None -> ()
29145
29145
29146
+ (* see #2337
29147
+ TODO: relax it to allow (int -> int [@bs])
29148
+ *)
29149
+ let rec checkNotFunciton (ty : Parsetree.core_type) =
29150
+ match ty.ptyp_desc with
29151
+ | Ptyp_poly (_,ty) -> checkNotFunciton ty
29152
+ | Ptyp_alias (ty,_) -> checkNotFunciton ty
29153
+ | Ptyp_arrow _ ->
29154
+ Location.raise_errorf
29155
+ ~loc:ty.ptyp_loc
29156
+ "syntactic function type is not allowed when working with abstract bs.deriving, create a named type as work around"
29157
+ | Ptyp_any
29158
+ | Ptyp_var _
29159
+ | Ptyp_tuple _
29160
+ | Ptyp_constr _
29161
+ | Ptyp_object _
29162
+ | Ptyp_class _
29163
+ | Ptyp_variant _
29164
+ | Ptyp_package _
29165
+ | Ptyp_extension _ -> ()
29146
29166
let handleTdcl (tdcl : Parsetree.type_declaration) =
29147
29167
let core_type = U.core_type_of_type_declaration tdcl in
29148
29168
let loc = tdcl.ptype_loc in
@@ -29169,19 +29189,21 @@ let handleTdcl (tdcl : Parsetree.type_declaration) =
29169
29189
Ext_list.fold_right (fun (x: Parsetree.label_declaration) acc ->
29170
29190
let pld_name = x.pld_name.txt in
29171
29191
let pld_loc = x.pld_name.loc in
29192
+ let pld_type = x.pld_type in
29193
+ let () = checkNotFunciton pld_type in
29172
29194
let setter =
29173
29195
Val.mk
29174
29196
{loc = pld_loc; txt = pld_name}
29175
29197
~attrs:[Ast_attributes.bs_get]
29176
29198
~prim:[pld_name]
29177
- (Typ.arrow "" core_type x. pld_type) :: acc in
29199
+ (Typ.arrow "" core_type pld_type) :: acc in
29178
29200
match x.pld_mutable with
29179
29201
| Mutable ->
29180
29202
Val.mk
29181
29203
{loc = pld_loc; txt = pld_name ^ "Set"}
29182
29204
~attrs:[Ast_attributes.bs_set]
29183
29205
~prim:[pld_name]
29184
- (Typ.arrow "" core_type (Typ.arrow "" x. pld_type (Ast_literal.type_unit ()))) :: setter
29206
+ (Typ.arrow "" core_type (Typ.arrow "" pld_type (Ast_literal.type_unit ()))) :: setter
29185
29207
| Immutable -> setter
29186
29208
) label_declarations []
29187
29209
in
@@ -37302,11 +37324,7 @@ let rec unsafe_mapper : Bs_ast_mapper.mapper =
37302
37324
->
37303
37325
let loc = sigi.psig_loc in
37304
37326
if Ast_payload.isAbstract actions then
37305
- let type_, codes = Ast_derive_abstract.handleTdclsInSig tdcls in
37306
- Ast_signature.fuseAll ~loc
37307
- (type_ ::
37308
- self.signature self
37309
- codes)
37327
+ Location.raise_errorf ~loc "bs.deriving abstract is not supported in signature language"
37310
37328
else
37311
37329
let newTdcls = newTdcls tdcls newAttrs in
37312
37330
Ast_signature.fuseAll ~loc
@@ -37378,24 +37396,31 @@ let rec unsafe_mapper : Bs_ast_mapper.mapper =
37378
37396
explict_nonrec
37379
37397
}, newAttrs ->
37380
37398
let loc = str.pstr_loc in
37399
+ let tdcls2 = newTdcls tdcls newAttrs in
37400
+ let newStr =
37401
+ self.structure_item self
37402
+ {str with pstr_desc = Pstr_type tdcls2} in
37381
37403
if Ast_payload.isAbstract actions then
37382
37404
let type_, codes = Ast_derive_abstract.handleTdcls tdcls in
37383
37405
Ast_structure.fuseAll ~loc
37384
- (type_::
37385
- self.structure self
37386
- codes)
37406
+ (
37407
+ Ast_structure.constraint_ ~loc
37408
+ [newStr] []::
37409
+ type_::
37410
+ self.structure self
37411
+ codes)
37387
37412
else
37388
- let tdcls2 = newTdcls tdcls newAttrs in
37389
37413
Ast_structure.fuseAll ~loc
37390
- (self.structure self
37414
+ (newStr ::
37415
+ self.structure self
37391
37416
(
37392
- {str with pstr_desc = Pstr_type tdcls2} ::
37393
37417
List.map
37394
37418
(fun action ->
37395
37419
Ast_derive.gen_structure_signature
37396
37420
loc
37397
37421
tdcls action explict_nonrec
37398
- ) actions))
37422
+ ) actions
37423
+ ))
37399
37424
| {bs_deriving = None }, _ ->
37400
37425
Bs_ast_mapper.default_mapper.structure_item self str
37401
37426
end
0 commit comments