Source file ppx_js_internal.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
module Ocaml_ast_mapper = Ast_mapper
open Ppxlib
open StdLabels
open Ast_helper
open Asttypes
open Parsetree
let nolabel = Nolabel
exception Syntax_error of Location.Error.t
let make_exception ~loc ~sub str = Syntax_error (Location.Error.make ~loc ~sub str)
let raise_errorf ~loc fmt =
Printf.ksprintf (fun str -> make_exception ~loc ~sub:[] str |> raise) fmt
let unflatten l =
match l with
| [] -> None
| hd :: tl ->
Some
(List.fold_left
~f:(fun p s -> Longident.Ldot (p, s))
~init:(Longident.Lident hd)
tl)
let rec split_at_dots s pos =
try
let dot = String.index_from s pos '.' in
String.sub s ~pos ~len:(dot - pos) :: split_at_dots s (dot + 1)
with Not_found -> [ String.sub s ~pos ~len:(String.length s - pos) ]
let parse_lid s =
let components = split_at_dots s 0 in
let assert_lid =
String.iteri ~f:(fun i c ->
match i, c with
| 0, ('a' .. 'z' | '_') -> ()
| 0, _ -> assert false
| _, ('a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9') -> ()
| _ -> assert false)
in
let assert_uid =
String.iteri ~f:(fun i c ->
match i, c with
| 0, 'A' .. 'Z' -> ()
| 0, _ -> assert false
| _, ('a' .. 'z' | 'A' .. 'Z' | '_' | '0' .. '9') -> ()
| _ -> assert false)
in
let rec check = function
| [] -> assert false
| "" :: _ -> assert false
| [ s ] -> assert_lid s
| modul :: rest ->
assert_uid modul;
check rest
in
check components;
match unflatten components with
| None -> assert false
| Some v -> v
let mkloc txt loc = { txt; loc }
let mknoloc txt = { txt; loc = Location.none }
let lid ?(loc = !default_loc) s = mkloc (parse_lid s) loc
let mkloc_opt ?(loc = !default_loc) x = mkloc x loc
let unit ?loc ?attrs () =
Exp.construct ?loc ?attrs (mkloc_opt ?loc (Longident.Lident "()")) None
let tuple ?loc ?attrs = function
| [] -> unit ?loc ?attrs ()
| [ x ] -> x
| xs -> Exp.tuple ?loc ?attrs xs
let ocaml_str ?loc ?attrs s = Exp.constant ?loc ?attrs (Const.string s)
(** Check if an expression is an identifier and returns it.
Raise a Location.error if it's not.
*)
let exp_to_string = function
| { pexp_desc = Pexp_ident { txt = Longident.Lident s; _ }; _ } -> s
| { pexp_desc = Pexp_construct ({ txt = Longident.Lident s; _ }, None); _ }
when String.length s > 0 && s.[0] >= 'A' && s.[0] <= 'Z' -> "_" ^ s
| { pexp_loc; _ } ->
raise_errorf
~loc:pexp_loc
"Javascript methods or attributes can only be simple identifiers."
let typ s = Typ.constr (lid s) []
(** arg1 -> arg2 -> ... -> ret *)
let arrows args ret =
List.fold_right args ~init:ret ~f:(fun (l, ty) fun_ -> Typ.arrow l ty fun_)
let wrapper = ref None
let make_str ?loc s =
match loc with
| None -> mknoloc s
| Some loc -> mkloc s loc
let merlin_hide =
{ attr_name = { txt = "merlin.hide"; loc = Location.none }
; attr_payload = PStr []
; attr_loc = Location.none
}
module Js : sig
val type_ :
?loc:Ast_helper.loc -> string -> Parsetree.core_type list -> Parsetree.core_type
val unsafe :
?loc:Ast_helper.loc -> string -> Parsetree.expression list -> Parsetree.expression
val fun_ :
?loc:Ast_helper.loc -> string -> Parsetree.expression list -> Parsetree.expression
end = struct
let js_dot name =
match !wrapper with
| None -> "Js." ^ name
| Some m -> m ^ ".Js." ^ name
let js_unsafe_dot name = js_dot ("Unsafe." ^ name)
let type_ ?loc s args = Typ.constr ?loc (lid ?loc (js_dot s)) args
let apply_ ~where ?loc s args =
let args = List.map ~f:(fun x -> nolabel, x) args in
Exp.(apply ?loc (ident ?loc (lid ?loc (where s))) args)
let unsafe = apply_ ~where:js_unsafe_dot
let fun_ = apply_ ~where:js_dot
end
let javascript_str ?loc ?attrs s = Js.fun_ "string" ?loc [ ocaml_str ?loc ?attrs s ]
let unescape lab =
if lab = ""
then lab
else
let lab =
if lab.[0] = '_' then String.sub lab ~pos:1 ~len:(String.length lab - 1) else lab
in
try
let i = String.rindex lab '_' in
if i = 0 then raise Not_found;
String.sub lab ~pos:0 ~len:i
with Not_found -> lab
let app_arg e = nolabel, e
let inject_arg e = Js.unsafe "inject" [ e ]
let inject_args args = Exp.array (List.map ~f:(fun e -> Js.unsafe "inject" [ e ]) args)
module Arg : sig
type t
val make : ?label:arg_label -> unit -> t
val name : t -> string
val typ : t -> core_type
val label : t -> arg_label
val args : t list -> (arg_label * core_type) list
end = struct
type arg =
{ label : arg_label
; name : string
}
type t = arg
let count = ref 0
let make ?(label = nolabel) () =
let c = !count in
incr count;
{ label; name = "t" ^ string_of_int c }
let label arg = arg.label
let name arg = arg.name
let typ arg = typ (name arg)
let args l = List.map ~f:(fun x -> label x, typ x) l
end
let js_dot_t_the_first_arg args =
match args with
| [] -> assert false
| x :: xs -> (Arg.label x, Js.type_ "t" [ Arg.typ x ]) :: Arg.args xs
let invoker ?( = []) uplift downlift body arguments =
let default_loc' = !default_loc in
default_loc := Location.none;
let res = "res" in
let typ_res = typ res in
let twrap = uplift arguments typ_res in
let tfunc_args, tfunc_res = downlift arguments typ_res in
let ebody =
let ident d = Exp.ident (lid (Arg.name d)) in
let args = List.map ~f:ident arguments in
body args
in
let annotated_ebody = Exp.constraint_ ebody tfunc_res in
let labels_and_pats =
List.map arguments ~f:(fun d ->
let label = Arg.label d in
let patt = Pat.var (mknoloc (Arg.name d)) in
label, patt)
in
let make_fun (label, pat) (label', typ) expr =
assert (label' = label);
Exp.fun_ label None (Pat.constraint_ pat typ) expr
in
let invoker =
List.fold_right2
labels_and_pats
tfunc_args
~f:make_fun
~init:(make_fun (nolabel, Pat.any ()) (nolabel, twrap) annotated_ebody)
in
let local_types =
make_str res :: List.map (extra_types @ arguments) ~f:(fun x -> make_str (Arg.name x))
in
let result = List.fold_right local_types ~init:invoker ~f:Exp.newtype in
default_loc := default_loc';
result
let open_t loc = Js.type_ ~loc "t" [ Typ.object_ ~loc [] Open ]
let method_call ~loc ~apply_loc obj (meth, meth_loc) args =
let gloc = { loc with Location.loc_ghost = true } in
let obj =
let gloc = { obj.pexp_loc with loc_ghost = true } in
Exp.constraint_ ~attrs:[ merlin_hide ] ~loc:gloc obj (open_t gloc)
in
let invoker =
invoker
(fun args tres -> arrows (Arg.args args) (Js.type_ "meth" [ tres ]))
(fun args tres -> js_dot_t_the_first_arg args, tres)
(fun eargs ->
match eargs with
| [] -> assert false
| eobj :: eargs ->
let eargs = inject_args eargs in
Js.unsafe "meth_call" [ eobj; ocaml_str (unescape meth); eargs ])
(Arg.make () :: List.map args ~f:(fun (label, _) -> Arg.make ~label ()))
in
Exp.apply
~loc:apply_loc
{ invoker with pexp_attributes = [ merlin_hide ] }
((app_arg obj :: args)
@ [ app_arg
(Exp.fun_
~loc:gloc
nolabel
None
(Pat.var ~loc:gloc (mknoloc "x"))
(Exp.send
~loc
(Exp.ident ~loc:obj.pexp_loc (lid ~loc:obj.pexp_loc "x"))
(make_str ~loc:meth_loc meth)))
])
let prop_get ~loc obj prop =
let gloc = { obj.pexp_loc with Location.loc_ghost = true } in
let obj = Exp.constraint_ ~loc:gloc obj (open_t gloc) in
let invoker =
invoker
(fun args tres ->
let loc = !default_loc in
arrows
(Arg.args args)
(Js.type_ "gen_prop" [ [%type: < get : [%t tres] ; .. > ] ]))
(fun args tres -> js_dot_t_the_first_arg args, tres)
(fun eargs ->
match eargs with
| [] | _ :: _ :: _ -> assert false
| [ only_arg ] -> Js.unsafe "get" [ only_arg; javascript_str (unescape prop) ])
[ Arg.make () ]
in
Exp.apply
invoker
[ app_arg obj
; app_arg
(Exp.fun_
~loc:gloc
nolabel
None
(Pat.var ~loc:gloc (mknoloc "x"))
(Exp.send ~loc (Exp.ident ~loc:gloc (lid ~loc:gloc "x")) (make_str ~loc prop)))
]
let prop_set ~loc ~prop_loc obj prop value =
let gloc = { obj.pexp_loc with Location.loc_ghost = true } in
let obj =
{ (Exp.constraint_ ~loc:gloc obj (open_t gloc)) with
pexp_attributes = [ merlin_hide ]
}
in
let invoker =
invoker
(fun args _tres ->
match args with
| [ obj; arg ] ->
let loc = !default_loc in
assert (Arg.label obj = nolabel);
assert (Arg.label arg = nolabel);
arrows
[ nolabel, Arg.typ obj ]
(Js.type_ "gen_prop" [ [%type: < set : [%t Arg.typ arg] -> unit ; .. > ] ])
| _ -> assert false)
(fun args _tres ->
let loc = !default_loc in
js_dot_t_the_first_arg args, [%type: unit])
(function
| [ obj; arg ] ->
Js.unsafe "set" [ obj; javascript_str (unescape prop); inject_arg arg ]
| _ -> assert false)
[ Arg.make (); Arg.make () ]
in
Exp.apply
invoker
[ app_arg obj
; app_arg value
; app_arg
(Exp.fun_
~loc:{ loc with loc_ghost = true }
nolabel
None
(Pat.var ~loc:gloc (mknoloc "x"))
(Exp.send
~loc:prop_loc
(Exp.ident ~loc:obj.pexp_loc (lid ~loc:gloc "x"))
(make_str ~loc prop)))
]
(** Instantiation of a class, used by new%js. *)
let new_object constr args =
let invoker =
invoker
(fun _args _tres ->
let loc = !default_loc in
[%type: unit])
(fun args tres ->
let tres = Js.type_ "t" [ tres ] in
match args with
| [] -> assert false
| unit :: args ->
assert (Arg.label unit = nolabel);
let args = Arg.args args in
(nolabel, Js.type_ "constr" [ arrows args tres ]) :: args, tres)
(function
| constr :: args -> Js.unsafe "new_obj" [ constr; inject_args args ]
| _ -> assert false)
(Arg.make () :: List.map args ~f:(fun (label, _) -> Arg.make ~label ()))
in
let gloc = { constr.loc with loc_ghost = true } in
Exp.apply
invoker
((app_arg (Exp.ident ~loc:constr.loc constr) :: args)
@ [ app_arg (unit ~loc:gloc ()) ])
module S = Map.Make (String)
(** We remove Pexp_poly as it should never be in the parsetree except after a method call.
*)
let format_meth body =
match body.pexp_desc with
| Pexp_poly (e, _) -> e
| _ -> body
(** Ensure basic sanity rules about fields of a literal object:
- No duplicated declaration
- Only relevant declarations (val and method, for now).
*)
module Prop_kind = struct
type t =
[ `Readonly
| `Writeonly
| `Readwrite
| `Optdef
]
let prop_type constr ty =
let constr =
match constr with
| `Readonly -> "readonly_prop"
| `Writeonly -> "writeonly_prop"
| `Readwrite -> "prop"
| `Optdef -> "optdef_prop"
in
Js.type_ constr [ ty ]
let wrap_arg_type constr ty =
match constr with
| `Readonly | `Writeonly | `Readwrite -> ty
| `Optdef -> Js.type_ "optdef" [ ty ]
end
type field_desc =
| Meth of
string Asttypes.loc
* Asttypes.private_flag
* Asttypes.override_flag
* Parsetree.expression
* Arg.t list
| Val of
string Asttypes.loc * Prop_kind.t * Asttypes.override_flag * Parsetree.expression
let filter_map f l =
let l =
List.fold_left l ~init:[] ~f:(fun acc x ->
match f x with
| Some x -> x :: acc
| None -> acc)
in
List.rev l
let preprocess_literal_object mappper fields :
[ `Fields of field_desc list | `Error of _ ] =
let check_name id names =
let txt = unescape id.txt in
if S.mem txt names
then
let id' = S.find txt names in
let details id =
if id.txt <> txt then Printf.sprintf " (normalized to %S)" txt else ""
in
let sub =
[ id'.loc, Printf.sprintf "Duplicated val or method %S%s." id'.txt (details id') ]
in
make_exception
~loc:id.loc
~sub
(Printf.sprintf "Duplicated val or method %S%s." id.txt (details id))
|> raise
else S.add txt id names
in
let drop_prefix ~prefix s =
let prefix_len = String.length prefix in
if String.length s > prefix_len && String.sub s ~pos:0 ~len:prefix_len = prefix
then true, String.sub s ~pos:prefix_len ~len:(String.length s - prefix_len)
else false, s
in
let parse_attribute x =
match drop_prefix ~prefix:"jsoo." x with
| _, "optdef" -> Some `Optdef
| _, "writeonly" -> Some `Writeonly
| _, "readonly" -> Some `Readonly
| _, "readwrite" -> Some `Readwrite
| false, _ -> None
| true, _ -> Some (`Unkown x)
in
let jsoo_attributes =
filter_map (fun { attr_name = { txt; _ }; attr_payload = _; attr_loc = _ } ->
parse_attribute txt)
in
let f (names, fields) exp =
match exp.pcf_desc with
| Pcf_val (id, mut, Cfk_concrete (bang, body)) ->
let names = check_name id names in
let body = mappper body in
let kind =
match mut, jsoo_attributes exp.pcf_attributes with
| Immutable, [] -> `Readonly
| Mutable, [] -> `Readwrite
| Immutable, [ `Readonly ] -> `Readonly
| (Immutable | Mutable), [ `Optdef ] -> `Optdef
| (Immutable | Mutable), [ `Writeonly ] -> `Writeonly
| (Immutable | Mutable), [ `Readwrite ] -> `Readwrite
| (Immutable | Mutable), [ `Unkown s ] ->
raise_errorf ~loc:exp.pcf_loc "Unkown jsoo attribute ([@@%s])." s
| Mutable, [ `Readonly ] ->
raise_errorf ~loc:exp.pcf_loc "A mutable field cannot be readonly."
| _, _ :: _ :: _ -> raise_errorf ~loc:exp.pcf_loc "Too many attributes."
in
names, Val (id, kind, bang, body) :: fields
| Pcf_method (id, priv, Cfk_concrete (bang, body)) ->
let names = check_name id names in
let body = format_meth (mappper body) in
let rec create_meth_ty exp =
match exp.pexp_desc with
| Pexp_fun (label, _, _, body) -> Arg.make ~label () :: create_meth_ty body
| _ -> []
in
let fun_ty = create_meth_ty body in
names, Meth (id, priv, bang, body, fun_ty) :: fields
| _ ->
raise_errorf
~loc:exp.pcf_loc
"This field is not valid inside a js literal object."
in
try `Fields (List.rev (snd (List.fold_left fields ~init:(S.empty, []) ~f)))
with Syntax_error error -> `Error (Location.Error.to_extension error)
let literal_object self_id (fields : field_desc list) =
let name = function
| Val (id, _, _, _) -> id
| Meth (id, _, _, _, _) -> id
in
let body = function
| Val (_, _, _, body) -> body
| Meth (_, _, _, body, _) ->
Exp.fun_ ~loc:{ body.pexp_loc with loc_ghost = true } Nolabel None self_id body
in
let =
List.concat
(List.map fields ~f:(function
| Val _ -> []
| Meth (_, _, _, _, l) -> l))
in
let invoker =
invoker
~extra_types
(fun args tres ->
let args =
List.map2 fields args ~f:(fun f desc ->
let ret_ty = Arg.typ desc in
let label = Arg.label desc in
match f with
| Val (_, constr, _, _) -> label, Prop_kind.prop_type constr ret_ty
| Meth (_, _, _, _, args) ->
( label
, arrows
((nolabel, Js.type_ "t" [ tres ]) :: Arg.args args)
(Js.type_ "meth" [ ret_ty ]) ))
in
arrows ((nolabel, Js.type_ "t" [ tres ]) :: args) tres)
(fun args tres ->
let args =
List.map2 fields args ~f:(fun f desc ->
let ret_ty = Arg.typ desc in
let label = Arg.label desc in
match f with
| Val (_, constr, _, _) -> label, Prop_kind.wrap_arg_type constr ret_ty
| Meth (_, _, _, _, args) ->
label, arrows ((nolabel, Js.type_ "t" [ tres ]) :: Arg.args args) ret_ty)
in
args, Js.type_ "t" [ tres ])
(fun args ->
Js.unsafe
"obj"
[ Exp.array
(List.map2 fields args ~f:(fun f arg ->
tuple
[ ocaml_str (unescape (name f).txt)
; inject_arg
(match f with
| Val _ -> arg
| Meth _ -> Js.fun_ "wrap_meth_callback" [ arg ])
]))
])
(List.map fields ~f:(function
| Val _ -> Arg.make ()
| Meth (_, _, _, _, _fun_ty) -> Arg.make ()))
in
let self = "self" in
let gloc = { !default_loc with Location.loc_ghost = true } in
let fake_object =
Exp.object_
{ pcstr_self = Pat.any ~loc:gloc ()
; pcstr_fields =
List.map fields ~f:(fun f ->
let loc = (name f).loc in
let apply e =
match f with
| Val _ -> e
| Meth _ ->
Exp.apply e [ nolabel, Exp.ident (lid ~loc:Location.none self) ]
in
{ pcf_loc = loc
; pcf_attributes = []
; pcf_desc =
Pcf_method
( name f
, Public
, Cfk_concrete
( Fresh
, apply (Exp.ident ~loc (lid ~loc:Location.none (name f).txt)) )
)
})
}
in
Exp.apply
invoker
(List.map fields ~f:(fun f -> app_arg (body f))
@ [ app_arg
{ (List.fold_right
(self :: List.map fields ~f:(fun f -> (name f).txt))
~init:fake_object
~f:(fun name fun_ ->
Exp.fun_ ~loc:gloc nolabel None (Pat.var ~loc:gloc (mknoloc name)) fun_))
with
pexp_attributes = [ merlin_hide ]
}
])
let transform =
object (self)
inherit Ast_traverse.map as super
method! expression expr =
let prev_default_loc = !default_loc in
default_loc := expr.pexp_loc;
let { pexp_attributes; _ } = expr in
let new_expr =
match expr with
| [%expr [%e? obj]##.[%e? meth]] ->
let obj = self#expression obj in
let prop = exp_to_string meth in
let new_expr = prop_get ~loc:meth.pexp_loc obj prop in
self#expression { new_expr with pexp_attributes }
| [%expr [%e? [%expr [%e? obj]##.[%e? meth]] as prop] := [%e? value]] ->
let obj = self#expression obj in
let value = self#expression value in
let prop_loc = prop.pexp_loc in
let prop = exp_to_string meth in
let new_expr = prop_set ~loc:meth.pexp_loc ~prop_loc obj prop value in
self#expression { new_expr with pexp_attributes }
| [%expr [%e? obj]##[%e? { pexp_desc = Pexp_apply (meth, args); _ }]] ->
let meth_str = exp_to_string meth in
let obj = self#expression obj in
let args = List.map args ~f:(fun (s, e) -> s, self#expression e) in
let new_expr =
let loc =
{ expr.pexp_loc with loc_ghost = true }
in
method_call ~loc ~apply_loc:expr.pexp_loc obj (meth_str, meth.pexp_loc) args
in
self#expression { new_expr with pexp_attributes }
| { pexp_desc = Pexp_apply (([%expr [%e? obj]##[%e? meth]] as prop), args)
; pexp_loc
; _
} ->
let meth_str = exp_to_string meth in
let obj = self#expression obj in
let args = List.map args ~f:(fun (s, e) -> s, self#expression e) in
let new_expr =
method_call
~loc:prop.pexp_loc
~apply_loc:pexp_loc
obj
(meth_str, meth.pexp_loc)
args
in
self#expression { new_expr with pexp_attributes }
| [%expr [%e? obj]##[%e? meth]] as expr ->
let obj = self#expression obj in
let meth_str = exp_to_string meth in
let new_expr =
method_call
~loc:expr.pexp_loc
~apply_loc:expr.pexp_loc
obj
(meth_str, meth.pexp_loc)
[]
in
self#expression { new_expr with pexp_attributes }
| [%expr [%js [%e? { pexp_desc = Pexp_new constr; _ }]]] ->
let new_expr = new_object constr [] in
self#expression { new_expr with pexp_attributes }
| { pexp_desc =
Pexp_apply ([%expr [%js [%e? { pexp_desc = Pexp_new constr; _ }]]], args)
; _
} ->
let args = List.map args ~f:(fun (s, e) -> s, self#expression e) in
let new_expr = new_object constr args in
self#expression { new_expr with pexp_attributes }
| [%expr [%js [%e? { pexp_desc = Pexp_object class_struct; _ }]]] ->
let fields =
preprocess_literal_object self#expression class_struct.pcstr_fields
in
let new_expr =
match fields with
| `Fields fields -> literal_object class_struct.pcstr_self fields
| `Error e -> Exp.extension e
in
self#expression { new_expr with pexp_attributes }
| _ -> super#expression expr
in
default_loc := prev_default_loc;
new_expr
end
let () = Driver.register_transformation "ppx_js" ~impl:transform#structure
let mapper =
let expr _ exp =
Ppxlib_ast.Selected_ast.of_ocaml Expression exp
|> transform#expression
|> Ppxlib_ast.Selected_ast.to_ocaml Expression
in
{ Ocaml_ast_mapper.default_mapper with expr }