package melange
Toolchain to produce JS from Reason/OCaml
Install
Dune Dependency
Authors
Maintainers
Sources
melange-2.0.0.tbz
sha256=0e213624b1626428a181fa0fbb262eadffb24431e530ad06dca885c6f0cf1e55
sha512=a7517da8aaa5c9bb8690826af3f8ca6dbbf1bccaa3f76d8c522963f0f9d46dc5e280cc4739879fdb09674f178f5664b1ba42c774b533bc51e90332d8bf6722ae
doc/src/melange_ppx/melange_ppx.ml.html
Source file melange_ppx.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 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942
(* Copyright (C) 2018 Hongbo Zhang, Authors of ReScript * Copyright (C) 2023 Antonio Nuno Monteiro * * 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. *) (* When we design a ppx, we should keep it simple, and also think about how it would work with other tools like merlin and ocamldep *) (* 1. extension point {[ [%mel.raw{| blabla |}] ]} will be desugared into {[ let module Js = struct unsafe_js : string -> 'a end in Js.unsafe_js {| blabla |} ]} The major benefit is to better error reporting (with locations). Otherwise {[ let f u = Js.unsafe_js u let _ = f (1 + 2) ]} And if it is inlined some where *) open Ppxlib module Ast_literal = Ast_literal module External = struct let rule = let rule label = let extractor = Ast_pattern.(single_expr_payload (pexp_ident __')) in let handler ~ctxt:_ ident = match ident with | { txt = Lident x; loc } -> Ast_extensions.handle_external loc x (* do we need support [%external gg.xx ] {[ Js.Undefined.to_opt (if Js.typeof x == "undefined" then x else Js.Undefined.empty ) ]} *) | { loc; txt = _ } -> Location.raise_errorf ~loc "external expects a single identifier" in let extender = Extension.V3.declare label Expression extractor handler in Context_free.Rule.extension extender in rule "mel.external" end module Raw = struct let stru_rule = let rule label = let extractor = Ast_pattern.__' in let handler ~(ctxt : Expansion_context.Extension.t) { loc; txt = payload } = let ext_loc = Expansion_context.Extension.extension_point_loc ctxt in Ast_attributes.warn_if_bs ~loc:ext_loc label; Ast_extensions.handle_raw_structure loc payload in let extender = Extension.V3.declare label Structure_item extractor handler in Context_free.Rule.extension extender in rule "mel.raw" let rule = let rule label = let extractor = Ast_pattern.__' in let handler ~ctxt:_ { loc; txt = payload } = Ast_attributes.warn_if_bs ~loc label; Ast_extensions.handle_raw ~kind:Raw_exp loc payload in let extender = Extension.V3.declare label Expression extractor handler in Context_free.Rule.extension extender in rule "mel.raw" let rules = [ stru_rule; rule ] end module Private = struct module Typemod_hide = struct let no_type_defined (x : Parsetree.structure_item) = match x.pstr_desc with | Pstr_eval _ | Pstr_value _ | Pstr_primitive _ | Pstr_typext _ | Pstr_exception _ (* | Pstr_module {pmb_expr = {pmod_desc = Pmod_ident _} } *) -> true | Pstr_include { pincl_mod = { pmod_desc = Pmod_constraint ( { pmod_desc = Pmod_structure [ { pstr_desc = Pstr_primitive _; _ } ]; _; }, _ ); _; }; _; } -> true (* FIX #4881 generated code from: {[ external %private x : int -> int = "x" [@@mel.module "./x"] ]} *) | _ -> false let check (x : Parsetree.structure) = List.iter (fun x -> if not (no_type_defined x) then Location.raise_errorf ~loc:x.pstr_loc "the structure is not supported in local extension") x let attrs : Parsetree.attributes = [ { attr_name = { txt = "internal.local"; loc = Location.none }; attr_payload = PStr []; attr_loc = Location.none; }; ] end let expand (stru : Parsetree.structure) = Typemod_hide.check stru; let last_loc = (List.hd stru).pstr_loc in let first_loc = (List.hd stru).pstr_loc in let loc = { first_loc with loc_end = last_loc.loc_end } in Ast_helper. [ Str.open_ (Opn.mk ~override:Override (Mod.structure ~loc ~attrs:Typemod_hide.attrs stru)); ] |> List.hd let rule = let rule label = let extractor = Ast_pattern.__' in let handler ~ctxt:_ { txt = payload; loc } = match payload with | PStr work -> expand work | PSig _ | PTyp _ | PPat _ -> Location.raise_errorf ~loc "private extension is not support" in let extender = Extension.V3.declare label Structure_item extractor handler in Context_free.Rule.extension extender in rule "private" end module Debugger = struct let rule = let rule label = let extractor = Ast_pattern.__' in let handler ~ctxt:_ { txt = payload; loc } = let open Ast_helper in Exp.mk ~loc (Ast_extensions.handle_debugger loc payload) in let extender = Extension.V3.declare label Expression extractor handler in Context_free.Rule.extension extender in rule "mel.debugger" end module Re = struct let rule = let rule label = let extractor = Ast_pattern.__' in let handler ~ctxt:_ { txt = payload; loc } = let open Ast_helper in Exp.constraint_ ~loc (Ast_extensions.handle_raw ~kind:Raw_re loc payload) (Ast_comb.to_js_re_type ~loc) in let extender = Extension.V3.declare label Expression extractor handler in Context_free.Rule.extension extender in rule "mel.re" end module Time = struct let rule = let rule label = let extractor = Ast_pattern.__' in let handler ~ctxt:_ { txt = payload; loc } = let open Ast_helper in match payload with | PStr [ { pstr_desc = Pstr_eval (e, _); _ } ] -> let locString = if loc.loc_ghost then "GHOST LOC" else let loc_start = loc.loc_start in let file, lnum, __ = ( loc_start.pos_fname, loc_start.pos_lnum, loc_start.pos_cnum - loc_start.pos_bol ) in Printf.sprintf "%s %d" (Filename.basename file) lnum in Exp.sequence ~loc [%expr [%e Exp.ident ~loc { loc; txt = Ldot (Ldot (Lident "Js", "Console"), "timeStart"); }] [%e Exp.constant (Pconst_string (locString, loc, None))]] (Exp.let_ ~loc Nonrecursive [ Vb.mk ~loc (Pat.var ~loc { loc; txt = "timed" }) e ] (Exp.sequence ~loc [%expr [%e Exp.ident ~loc { loc; txt = Ldot (Ldot (Lident "Js", "Console"), "timeEnd"); }] [%e Exp.constant (Pconst_string (locString, loc, None))]] (Exp.ident ~loc { loc; txt = Lident "timed" }))) | _ -> Location.raise_errorf ~loc "expect a boolean expression in the payload" in let extender = Extension.V3.declare label Expression extractor handler in Context_free.Rule.extension extender in rule "mel.time" end module Node = struct let rule = let rule label = let extractor = Ast_pattern.__' in let handler ~ctxt:_ ({ txt = payload; loc } : Parsetree.payload Location.loc) = let strip s = match s with "_module" -> "module" | x -> x in match Ast_payload.as_ident payload with | Some { txt = Lident (("__filename" | "__dirname" | "_module" | "require") as name); loc; } -> let open Ast_helper in let exp = Ast_extensions.handle_external loc (strip name) in let typ = Ast_core_type.lift_option_type (if name = "_module" then Typ.constr ~loc { txt = Ldot (Lident "Node", "node_module"); loc } [] else if name = "require" then Typ.constr ~loc { txt = Ldot (Lident "Node", "node_require"); loc } [] else [%type: string]) in Exp.constraint_ ~loc exp typ | Some _ | None -> ( match payload with | PTyp _ -> Location.raise_errorf ~loc "Illegal payload, expect an expression payload instead of \ type payload" | PPat _ -> Location.raise_errorf ~loc "Illegal payload, expect an expression payload instead of \ pattern payload" | _ -> Location.raise_errorf ~loc "Illegal payload") in let extender = Extension.V3.declare label Expression extractor handler in Context_free.Rule.extension extender in rule "mel.node" end module Obj = struct let rule = let rule label = let extractor = Ast_pattern.__' in let handler ~ctxt:_ { txt = payload; loc } = match payload with | PStr [ { pstr_desc = Pstr_eval ( ({ pexp_desc = Pexp_record (label_exprs, None); _ } as e), _ ); _; }; ] -> { e with pexp_desc = Ast_external_mk.record_as_js_object e.pexp_loc label_exprs; } | _ -> Location.raise_errorf ~loc "Expect a record expression here" in let extender = Extension.V3.declare label Expression extractor handler in Context_free.Rule.extension extender in rule "mel.obj" end module Mapper = struct let mapper = let succeed attr attrs = match attrs with | [ _ ] -> () | _ -> Bs_ast_invariant.mark_used_bs_attribute attr; Bs_ast_invariant.warn_discarded_unused_attributes attrs in object (self) inherit Ppxlib.Ast_traverse.map as super (* [Expansion_context.Base.t] Ppxlib.Ast_traverse.map_with_context as super *) method! class_type ({ pcty_attributes; pcty_loc; _ } as ctd : Parsetree.class_type) = (* {[class x : int -> object end [@u] ]} Actually this is not going to happpen as below is an invalid syntax {[class type x = int -> object end[@u]]} *) match Ast_attributes.process_bs pcty_attributes with | false, _ -> super#class_type ctd | true, pcty_attributes -> ( match ctd.pcty_desc with | Pcty_signature { pcsig_self; pcsig_fields } -> let pcty_desc = let pcsig_self = self#core_type pcsig_self in match Ast_core_type_class_type.handle_class_type_fields (self, super#class_type_field) pcsig_fields with | Ok pcsig_fields -> Pcty_signature { pcsig_self; pcsig_fields } | Error s -> let loc = ctd.pcty_loc in let pcsig_self = [%type: [%ocaml.error [%e Ast_helper.Exp.constant (Pconst_string (s, loc, None))]]] in Pcty_signature { pcsig_self; pcsig_fields = [] } in { ctd with pcty_desc; pcty_attributes } | Pcty_open _ (* let open M in CT *) | Pcty_constr _ | Pcty_extension _ | Pcty_arrow _ -> Location.raise_errorf ~loc:pcty_loc "invalid or unused attribute `[@u]") method! core_type typ = Ast_core_type_class_type.typ_mapper (self, super#core_type) typ method! expression e = match e.pexp_desc with | Pexp_apply (fn, args) -> Ast_exp_apply.app_exp_mapper e (self, super#expression) fn args | Pexp_constant (Pconst_string (s, loc, Some delim)) -> Utf8_string.Interp.transform e s loc delim (* End rewriting *) | Pexp_function cases -> ( (* {[ function [@mel.exn] | Not_found -> 0 | Invalid_argument -> 1 ]}*) match Ast_attributes.process_pexp_fun_attributes_rev e.pexp_attributes with | false, _ -> super#expression e | true, pexp_attributes -> Ast_bs_open.convertBsErrorFunction e.pexp_loc self pexp_attributes cases) | Pexp_fun (label, _, pat, body) -> ( match Ast_attributes.process_attributes_rev e.pexp_attributes with | Nothing, _ -> super#expression e | Uncurry _, pexp_attributes -> { e with pexp_desc = Ast_uncurry_gen.to_uncurry_fn e.pexp_loc self label pat body; pexp_attributes; } | Method _, _ -> let loc = e.pexp_loc in [%expr [%ocaml.error [%e Ast_helper.Exp.constant (Pconst_string ( "%@meth is not supported in function expression", loc, None ))]]] | Meth_callback _, pexp_attributes -> (* FIXME: does it make sense to have a label for [this] ? *) { e with pexp_desc = Ast_uncurry_gen.to_method_callback e.pexp_loc self label pat body; pexp_attributes; }) | Pexp_object { pcstr_self; pcstr_fields } -> ( match Ast_attributes.process_bs e.pexp_attributes with | true, pexp_attributes -> { e with pexp_desc = Ast_util.ocaml_obj_as_js_object e.pexp_loc self pcstr_self pcstr_fields; pexp_attributes; } | false, _ -> super#expression e) | Pexp_match ( b, [ { pc_lhs = { ppat_desc = Ppat_construct ({ txt = Lident "true"; _ }, None); _; }; pc_guard = None; pc_rhs = t_exp; }; { pc_lhs = { ppat_desc = Ppat_construct ({ txt = Lident "false"; _ }, None); _; }; pc_guard = None; pc_rhs = f_exp; }; ] ) | Pexp_match ( b, [ { pc_lhs = { ppat_desc = Ppat_construct ({ txt = Lident "false"; _ }, None); _; }; pc_guard = None; pc_rhs = f_exp; }; { pc_lhs = { ppat_desc = Ppat_construct ({ txt = Lident "true"; _ }, None); _; }; pc_guard = None; pc_rhs = t_exp; }; ] ) -> super#expression { e with pexp_desc = Pexp_ifthenelse (b, t_exp, Some f_exp) } | Pexp_let (r, vbs, sub_expr) -> { e with pexp_desc = Pexp_let ( r, Ast_tuple_pattern_flatten.value_bindings_mapper self vbs, self#expression sub_expr ); } | _ -> super#expression e method! class_expr ce = match ce.pcl_desc with | Pcl_let (r, vbs, sub_ce) -> { ce with pcl_desc = Pcl_let ( r, Ast_tuple_pattern_flatten.value_bindings_mapper self vbs, self#class_expr sub_ce ); } | _ -> super#class_expr ce method! label_declaration lbl = (* Ad-hoc way to internalize stuff *) let lbl = super#label_declaration lbl in match lbl.pld_attributes with | [ { attr_name = { txt = "internal"; _ }; _ } ] -> { lbl with pld_name = { lbl.pld_name with txt = String.capitalize_ascii lbl.pld_name.txt; }; pld_attributes = []; } | _ -> lbl method! structure_item str = match str.pstr_desc with | Pstr_primitive prim -> if Ast_attributes.rs_externals prim.pval_attributes prim.pval_prim then Ast_external.handleExternalInStru self prim str else super#structure_item { str with pstr_desc = Pstr_primitive { prim with pval_attributes = Ast_attributes.unboxable_type_in_prim_decl :: prim.pval_attributes; }; } | Pstr_value ( Nonrecursive, [ { pvb_pat = { ppat_desc = Ppat_var pval_name_orig; _ } as pvb_pat_orig; pvb_expr; pvb_attributes; pvb_loc; }; ] ) -> ( let pvb_pat, pval_name = match Ast_attributes.has_mel_as_payload pvb_attributes with | Some ({ attr_payload; _ } as attr) -> Bs_ast_invariant.mark_used_bs_attribute attr; let pval_name = { txt = Ast_payload.extract_mel_as_ident ~loc:pvb_loc attr_payload; loc = pval_name_orig.loc; } in ( { pvb_pat_orig with ppat_desc = Ppat_var pval_name }, pval_name ) | None -> (pvb_pat_orig, pval_name_orig) in let pvb_expr = self#expression pvb_expr in let pvb_attributes = self#attributes pvb_attributes in let has_inline_property = Ast_attributes.has_inline_payload pvb_attributes in match (has_inline_property, pvb_expr.pexp_desc) with | Some attr, Pexp_constant (Pconst_string (s, _, dec)) -> let loc = pvb_loc in succeed attr pvb_attributes; { str with pstr_desc = Pstr_primitive { pval_name; pval_type = [%type: string]; pval_loc = loc; pval_attributes = []; pval_prim = External_ffi_types.inline_string_primitive s dec; }; } | Some attr, Pexp_constant (Pconst_integer (s, None)) -> let s = Int32.of_string s in let loc = pvb_loc in succeed attr pvb_attributes; { str with pstr_desc = Pstr_primitive { pval_name; pval_type = [%type: int]; pval_loc = loc; pval_attributes = []; pval_prim = External_ffi_types.inline_int_primitive s; }; } | Some attr, Pexp_constant (Pconst_integer (s, Some 'L')) -> let s = Int64.of_string s in let loc = pvb_loc in succeed attr pvb_attributes; { str with pstr_desc = Pstr_primitive { pval_name; pval_type = [%type: int64]; pval_loc = loc; pval_attributes = []; pval_prim = External_ffi_types.inline_int64_primitive s; }; } | Some attr, Pexp_constant (Pconst_float (s, None)) -> let loc = pvb_loc in succeed attr pvb_attributes; { str with pstr_desc = Pstr_primitive { pval_name; pval_type = [%type: float]; pval_loc = loc; pval_attributes = []; pval_prim = External_ffi_types.inline_float_primitive s; }; } | ( Some attr, Pexp_construct ({ txt = Lident (("true" | "false") as txt); _ }, None) ) -> let loc = pvb_loc in succeed attr pvb_attributes; { str with pstr_desc = Pstr_primitive { pval_name; pval_type = [%type: bool]; pval_loc = loc; pval_attributes = []; pval_prim = External_ffi_types.inline_bool_primitive (txt = "true"); }; } | _ -> { str with pstr_desc = Pstr_value ( Nonrecursive, Ast_tuple_pattern_flatten.value_bindings_mapper self [ { pvb_pat; pvb_expr; pvb_attributes; pvb_loc } ] ); }) | Pstr_value (r, vbs) -> { str with pstr_desc = Pstr_value (r, Ast_tuple_pattern_flatten.value_bindings_mapper self vbs); } | Pstr_attribute ({ (* TODO: remove support for bs.* *) attr_name = { txt = "bs.config" | "mel.config" | "config"; _ }; _; } as attr) -> Bs_ast_invariant.mark_used_bs_attribute attr; str | _ -> super#structure_item str method! signature_item sigi = match sigi.psig_desc with | Psig_value ({ pval_attributes; pval_prim; pval_name = pval_name_orig; pval_loc; _; } as value_desc_orig) -> ( let value_desc = match Ast_attributes.has_mel_as_payload pval_attributes with | Some ({ attr_payload; _ } as attr) -> Bs_ast_invariant.mark_used_bs_attribute attr; { value_desc_orig with pval_name = { txt = Ast_payload.extract_mel_as_ident ~loc:pval_loc attr_payload; loc = pval_name_orig.loc; }; } | None -> value_desc_orig in let pval_attributes = self#attributes pval_attributes in if Ast_attributes.rs_externals pval_attributes pval_prim then Ast_external.handleExternalInSig self value_desc sigi else match Ast_attributes.has_inline_payload pval_attributes with | Some ({ attr_payload = PStr [ { pstr_desc = Pstr_eval ({ pexp_desc; _ }, _); _ } ]; _; } as attr) -> ( match pexp_desc with | Pexp_constant (Pconst_string (s, _, dec)) -> succeed attr pval_attributes; { sigi with psig_desc = Psig_value { value_desc with pval_prim = External_ffi_types.inline_string_primitive s dec; pval_attributes = []; }; } | Pexp_constant (Pconst_integer (s, None)) -> succeed attr pval_attributes; let s = Int32.of_string s in { sigi with psig_desc = Psig_value { value_desc with pval_prim = External_ffi_types.inline_int_primitive s; pval_attributes = []; }; } | Pexp_constant (Pconst_integer (s, Some 'L')) -> let s = Int64.of_string s in succeed attr pval_attributes; { sigi with psig_desc = Psig_value { value_desc with pval_prim = External_ffi_types.inline_int64_primitive s; pval_attributes = []; }; } | Pexp_constant (Pconst_float (s, None)) -> succeed attr pval_attributes; { sigi with psig_desc = Psig_value { value_desc with pval_prim = External_ffi_types.inline_float_primitive s; pval_attributes = []; }; } | Pexp_construct ({ txt = Lident (("true" | "false") as txt); _ }, None) -> succeed attr pval_attributes; { sigi with psig_desc = Psig_value { value_desc with pval_prim = External_ffi_types.inline_bool_primitive (txt = "true"); pval_attributes = []; }; } | _ -> super#signature_item { sigi with psig_desc = Psig_value { value_desc with pval_attributes = Ast_attributes.unboxable_type_in_prim_decl :: pval_attributes; }; }) | Some _ | None -> super#signature_item { sigi with psig_desc = Psig_value { value_desc with pval_attributes = Ast_attributes.unboxable_type_in_prim_decl :: pval_attributes; }; }) | _ -> super#signature_item sigi end end module Derivers = struct let gen_structure_signature loc (tdcls : Parsetree.type_declaration list) (gen : Ast_derive.gen) (explicit_nonrec : Asttypes.rec_flag) = let u = gen in let a = u.structure_gen tdcls explicit_nonrec in let b = u.signature_gen tdcls explicit_nonrec in let open Ast_helper in [ Str.include_ ~loc (Incl.mk ~loc (Mod.constraint_ ~loc (Mod.structure ~loc a) (Mty.signature ~loc b))); ] let abstract = let args () = Deriving.Args.(empty +> flag "light") in let str_type_decl = Deriving.Generator.V2.make (args ()) (fun ~ctxt:_ (rf, tdcls) light -> Ast_derive_abstract.handleTdclsInStr ~light rf tdcls) and sig_type_decl = Deriving.Generator.V2.make (args ()) (fun ~ctxt:_ (rf, tdcls) light -> Ast_derive_abstract.handleTdclsInSig ~light rf tdcls) in Deriving.add ~str_type_decl ~sig_type_decl "abstract" let jsConverter = let args () = Deriving.Args.(empty +> flag "newType") in let str_type_decl = Deriving.Generator.V2.make (args ()) (fun ~ctxt (rf, tdcls) newType -> let loc = Expansion_context.Deriver.derived_item_loc ctxt in let gen = Ast_derive_js_mapper.gen ~newType in gen_structure_signature loc tdcls gen rf) and sig_type_decl = Deriving.Generator.V2.make (args ()) (fun ~ctxt:_ (rf, tdcls) newType -> let gen = Ast_derive_js_mapper.gen ~newType in gen.signature_gen tdcls rf) in Deriving.add ~str_type_decl ~sig_type_decl "jsConverter" let accessors = let str_type_decl = Deriving.Generator.V2.make Deriving.Args.empty (fun ~ctxt (rf, tdcls) -> let loc = Expansion_context.Deriver.derived_item_loc ctxt in gen_structure_signature loc tdcls Ast_derive_projector.gen rf) and sig_type_decl = Deriving.Generator.V2.make Deriving.Args.empty (fun ~ctxt:_ (rf, tdcls) -> Ast_derive_projector.gen.signature_gen tdcls rf) in Deriving.add ~str_type_decl ~sig_type_decl "accessors" end let () = Ocaml_common.Location.( register_error_of_exn (fun exn -> match Melange_compiler_libs.Location.error_of_exn exn with | Some (`Ok report) -> Some report | None | Some `Already_displayed -> None)) let () = Driver.add_arg "-unsafe" (Unit (fun () -> Ocaml_common.Clflags.unsafe := true)) ~doc:"Do not compile bounds checking on array and string access"; Driver.add_arg "-alert" (String Ocaml_common.Warnings.parse_alert_option) ~doc:"Turn off alerting from the PPX"; Driver.V2.register_transformation "melange" ~rules: (Raw.rules @ [ External.rule; Private.rule; Debugger.rule; Re.rule; Time.rule; Node.rule; Obj.rule; ]) ~impl:(fun ctxt str -> let input_name = Expansion_context.Base.input_name ctxt in Ocaml_common.Location.input_name := input_name; let ast = Mapper.mapper#structure str in Bs_ast_invariant.emit_external_warnings_on_structure ast; ast) ~intf:(fun ctxt sig_ -> let input_name = Expansion_context.Base.input_name ctxt in Ocaml_common.Location.input_name := input_name; let ast = Mapper.mapper#signature sig_ in Bs_ast_invariant.emit_external_warnings_on_signature ast; ast)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>