this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix post-rebase: update stale Js_top_worker_rpc refs, cppo-gate ppx_template_generated

- findlibish.mli: use Js_top_worker.Impl.dynamic_cmis (RPC module removed)
- worker.ml: use Impl.dcs_url instead of Toplevel_api_gen.dcs_url
- x-ocaml/src/jtw_client: convert to cppo for OxCaml-only
ppx_template_generated field in Query_protocol.Compl

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+19 -1
+14
src/dune
··· 1 + ; Generate jtw_client.ml from cppo source with conditional OXCAML flag 2 + 3 + (rule 4 + (targets jtw_client.ml) 5 + (deps (:x jtw_client.cppo.ml)) 6 + (enabled_if (not %{ocaml-config:ox})) 7 + (action (run %{bin:cppo} -V OCAML:%{ocaml_version} %{x} -o %{targets}))) 8 + 9 + (rule 10 + (targets jtw_client.ml) 11 + (deps (:x jtw_client.cppo.ml)) 12 + (enabled_if %{ocaml-config:ox}) 13 + (action (run %{bin:cppo} -V OCAML:%{ocaml_version} -D OXCAML %{x} -o %{targets}))) 14 + 1 15 (executable 2 16 (name x_ocaml) 3 17 (libraries
+5 -1
src/jtw_client.ml src/jtw_client.cppo.ml
··· 74 74 kind = convert_kind e.kind; 75 75 desc = e.desc; 76 76 info = e.info; 77 - deprecated = e.deprecated } 77 + deprecated = e.deprecated; 78 + #if defined OXCAML 79 + ppx_template_generated = false; 80 + #endif 81 + } 78 82 ) c.entries; 79 83 } 80 84