Build:
- 0
2026-02-27 04:04.02: New job: test ocaml-vdom.0.2 with ocamlbuild.0.14.3, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocamlbuild.0.14.3 0.14.3
RUN opam reinstall ocamlbuild.0.14.3; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocamlbuild.0.14.3' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall ocaml-vdom.0.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-vdom.0.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test ocaml-vdom.0.2) || true
RUN opam reinstall --with-test --verbose ocaml-vdom.0.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-vdom.0.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-02-27 04:04.02: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocamlbuild.0.14.3-ocaml-vdom.0.2-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:04.02: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ocamlbuild.0.14.3 0.14.3"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlbuild.0.14.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlbuild.0.14.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-vdom.0.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-vdom.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test ocaml-vdom.0.2) || true"))
(run (shell "opam reinstall --with-test --verbose ocaml-vdom.0.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-vdom.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-27 04:04.02: Waiting for resource in pool OCluster
2026-03-02 02:43.00: Waiting for worker…
2026-03-02 02:47.06: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 59% (10976/18334)
Updating files: 60% (11001/18334)
Updating files: 61% (11184/18334)
Updating files: 62% (11368/18334)
Updating files: 63% (11551/18334)
Updating files: 64% (11734/18334)
Updating files: 65% (11918/18334)
Updating files: 66% (12101/18334)
Updating files: 67% (12284/18334)
Updating files: 68% (12468/18334)
Updating files: 69% (12651/18334)
Updating files: 70% (12834/18334)
Updating files: 71% (13018/18334)
Updating files: 72% (13201/18334)
Updating files: 73% (13384/18334)
Updating files: 74% (13568/18334)
Updating files: 75% (13751/18334)
Updating files: 76% (13934/18334)
Updating files: 77% (14118/18334)
Updating files: 78% (14301/18334)
Updating files: 79% (14484/18334)
Updating files: 80% (14668/18334)
Updating files: 81% (14851/18334)
Updating files: 82% (15034/18334)
Updating files: 83% (15218/18334)
Updating files: 84% (15401/18334)
Updating files: 85% (15584/18334)
Updating files: 86% (15768/18334)
Updating files: 87% (15951/18334)
Updating files: 88% (16134/18334)
Updating files: 89% (16318/18334)
Updating files: 90% (16501/18334)
Updating files: 91% (16684/18334)
Updating files: 92% (16868/18334)
Updating files: 93% (17051/18334)
Updating files: 94% (17234/18334)
Updating files: 95% (17418/18334)
Updating files: 96% (17601/18334)
Updating files: 97% (17784/18334)
Updating files: 98% (17968/18334)
Updating files: 99% (18151/18334)
Updating files: 100% (18334/18334)
Updating files: 100% (18334/18334), done.
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
.../ocaml-base-compiler.3.07+1/opam | 1 +
.../ocaml-base-compiler.3.07+2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07/opam | 1 +
.../ocaml-base-compiler.3.08.0/opam | 1 +
.../ocaml-base-compiler.3.08.1/opam | 1 +
.../ocaml-base-compiler.3.08.2/opam | 1 +
.../ocaml-base-compiler.3.08.3/opam | 1 +
.../ocaml-base-compiler.3.08.4/opam | 1 +
.../ocaml-base-compiler.3.09.0/opam | 1 +
.../ocaml-base-compiler.3.09.1/opam | 1 +
.../ocaml-base-compiler.3.09.2/opam | 1 +
.../ocaml-base-compiler.3.09.3/opam | 1 +
.../ocaml-base-compiler.3.10.0/opam | 1 +
.../ocaml-base-compiler.3.10.1/opam | 1 +
.../ocaml-base-compiler.3.10.2/opam | 1 +
.../ocaml-base-compiler.3.11.0/opam | 1 +
.../ocaml-base-compiler.3.11.1/opam | 1 +
.../ocaml-base-compiler.3.11.2/opam | 1 +
.../ocaml-base-compiler.3.12.0/opam | 1 +
.../ocaml-base-compiler.3.12.1/opam | 1 +
.../ocaml-base-compiler.4.00.0/opam | 1 +
.../ocaml-base-compiler.4.00.1/opam | 1 +
.../ocaml-base-compiler.4.01.0/opam | 1 +
.../ocaml-base-compiler.4.02.0/opam | 1 +
.../ocaml-base-compiler.4.02.1/opam | 1 +
.../ocaml-base-compiler.4.02.2/opam | 1 +
.../ocaml-base-compiler.4.02.3/opam | 1 +
.../ocaml-base-compiler.4.03.0/opam | 1 +
.../ocaml-base-compiler.4.04.0/opam | 1 +
.../ocaml-base-compiler.4.04.1/opam | 1 +
.../ocaml-base-compiler.4.04.2/opam | 1 +
.../ocaml-base-compiler.4.05.0/opam | 1 +
.../ocaml-base-compiler.4.06.0/opam | 1 +
.../ocaml-base-compiler.4.06.1/opam | 1 +
.../ocaml-base-compiler.4.07.0/opam | 1 +
.../ocaml-base-compiler.4.07.1/opam | 1 +
.../ocaml-base-compiler.4.08.0/opam | 1 +
.../ocaml-base-compiler.4.08.1/opam | 1 +
.../ocaml-base-compiler.4.09.0/opam | 1 +
.../ocaml-base-compiler.4.09.1/opam | 1 +
.../ocaml-base-compiler.4.10.0/opam | 1 +
.../ocaml-base-compiler.4.10.1/opam | 1 +
.../ocaml-base-compiler.4.10.2/opam | 1 +
.../ocaml-base-compiler.4.11.0/opam | 1 +
.../ocaml-base-compiler.4.11.1/opam | 1 +
.../ocaml-base-compiler.4.11.2/opam | 1 +
.../ocaml-base-compiler.4.12.0/opam | 1 +
.../ocaml-base-compiler.4.12.1/opam | 1 +
.../ocaml-base-compiler.4.13.0/opam | 1 +
.../ocaml-base-compiler.4.13.1/opam | 1 +
.../ocaml-base-compiler.4.14.0/opam | 1 +
.../ocaml-base-compiler.4.14.1/opam | 1 +
.../ocaml-base-compiler.4.14.2/opam | 1 +
.../ocaml-base-compiler.4.14.2~rc1/opam | 1 +
.../ocaml-base-compiler.4.14.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 1 +
.../ocaml-secondary-compiler.4.08.1-1/opam | 1 +
.../ocaml-secondary-compiler.4.08.1/opam | 1 +
.../ocaml-secondary-compiler.4.14.2/opam | 1 +
.../ocaml-variants.3.09.1+metaocaml/opam | 1 +
.../ocaml-variants.4.00.0+debug-runtime/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam | 1 +
.../ocaml-variants.4.00.1+debug-runtime/opam | 1 +
.../ocaml-variants.4.00.1+open-types/opam | 1 +
.../ocaml-variants.4.00.1+raspberrypi/opam | 1 +
.../ocaml-variants.4.00.1+short-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam | 1 +
.../ocaml-variants.4.01.0+armv6-freebsd/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam | 1 +
.../ocaml-variants.4.01.0+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+musl/opam | 1 +
.../ocaml-variants.4.01.0+open-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+profile/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam | 1 +
.../ocaml-variants.4.02.0+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits-ber/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits/opam | 1 +
.../ocaml-variants.4.02.1+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+musl/opam | 1 +
.../ocaml-variants.4.02.2+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam | 1 +
.../ocaml-variants.4.02.3+buckle-master/opam | 1 +
.../ocaml-variants.4.02.3+bytecode-only/opam | 1 +
.../ocaml-variants.4.02.3+curried-constr/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam | 1 +
.../ocaml-variants.4.02.3+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+musl/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+32bit/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+flambda/opam | 1 +
.../ocaml-variants.4.03.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam | 1 +
.../ocaml-variants.4.03.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam | 1 +
.../ocaml-variants.4.04.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+flambda/opam | 1 +
.../ocaml-variants.4.04.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam | 1 +
.../ocaml-variants.4.04.0+safe-string/opam | 1 +
.../ocaml-variants.4.04.0+spacetime/opam | 1 +
.../ocaml-variants.4.04.0+trunk+forced_lto/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+32bit/opam | 1 +
.../ocaml-variants.4.04.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.04.1+copatterns/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+flambda/opam | 1 +
.../ocaml-variants.4.04.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam | 1 +
.../ocaml-variants.4.04.1+safe-string/opam | 1 +
.../ocaml-variants.4.04.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+32bit/opam | 1 +
.../ocaml-variants.4.04.2+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+flambda/opam | 1 +
.../ocaml-variants.4.04.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam | 1 +
.../ocaml-variants.4.04.2+safe-string/opam | 1 +
.../ocaml-variants.4.04.2+spacetime/opam | 1 +
.../ocaml-variants.4.04.2+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam | 1 +
.../ocaml-variants.4.05.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam | 1 +
.../ocaml-variants.4.05.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.05.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.05.0+safe-string/opam | 1 +
.../ocaml-variants.4.05.0+spacetime/opam | 1 +
.../ocaml-variants.4.05.0+statistical-memprof/opam | 1 +
.../ocaml-variants.4.05.1+trunk+afl/opam | 1 +
.../ocaml-variants.4.05.1+trunk+flambda/opam | 1 +
.../ocaml-variants.4.05.1+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam | 1 +
.../ocaml-variants.4.05.1+trunk+safe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam | 1 +
.../ocaml-variants.4.06.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+flambda/opam | 1 +
.../ocaml-variants.4.06.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam | 1 +
.../ocaml-variants.4.06.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.06.0+spacetime/opam | 1 +
.../ocaml-variants.4.06.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam | 1 +
.../ocaml-variants.4.06.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.1+default-unsafe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+flambda/opam | 1 +
.../ocaml-variants.4.06.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam | 1 +
.../ocaml-variants.4.06.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.1+no-flat-float-array/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+rescript/opam | 1 +
.../ocaml-variants.4.06.1+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+termux/opam | 1 +
.../ocaml-variants.4.06.2+trunk+afl/opam | 1 +
.../ocaml-variants.4.06.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.06.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam | 1 +
.../ocaml-variants.4.07.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+flambda/opam | 1 +
.../ocaml-variants.4.07.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam | 1 +
.../ocaml-variants.4.07.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam | 1 +
.../ocaml-variants.4.07.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+flambda/opam | 1 +
.../ocaml-variants.4.07.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam | 1 +
.../ocaml-variants.4.07.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.07.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.07.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.1+spacetime/opam | 1 +
.../ocaml-variants.4.07.1+statistical-memprof/opam | 1 +
.../ocaml-variants.4.07.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.07.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.07.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam | 1 +
.../ocaml-variants.4.08.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+flambda/opam | 1 +
.../ocaml-variants.4.08.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam | 1 +
.../ocaml-variants.4.08.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.08.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam | 1 +
.../ocaml-variants.4.08.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+flambda/opam | 1 +
.../ocaml-variants.4.08.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam | 1 +
.../ocaml-variants.4.08.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.1+spacetime/opam | 1 +
.../ocaml-variants.4.08.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.08.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.08.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam | 1 +
.../ocaml-variants.4.09.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+flambda/opam | 1 +
.../ocaml-variants.4.09.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam | 1 +
.../ocaml-variants.4.09.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+32bit/opam | 1 +
.../ocaml-variants.4.09.1+afl+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam | 1 +
.../ocaml-variants.4.09.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+flambda/opam | 1 +
.../ocaml-variants.4.09.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam | 1 +
.../ocaml-variants.4.09.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.1+spacetime/opam | 1 +
.../ocaml-variants.4.09.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.09.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.09.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam | 1 +
.../ocaml-variants.4.10.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+flambda/opam | 1 +
.../ocaml-variants.4.10.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam | 1 +
.../ocaml-variants.4.10.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.0+musl+static+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam | 1 +
.../ocaml-variants.4.10.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.10.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam | 1 +
.../ocaml-variants.4.10.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+flambda/opam | 1 +
.../ocaml-variants.4.10.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam | 1 +
.../ocaml-variants.4.10.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.1+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam | 1 +
.../ocaml-variants.4.10.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam | 1 +
.../ocaml-variants.4.10.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+flambda/opam | 1 +
.../ocaml-variants.4.10.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam | 1 +
.../ocaml-variants.4.10.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.2+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+rescript/opam | 1 +
.../ocaml-variants.4.10.2+spacetime/opam | 1 +
.../ocaml-variants.4.10.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.10.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam | 1 +
.../ocaml-variants.4.11.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+flambda/opam | 1 +
.../ocaml-variants.4.11.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam | 1 +
.../ocaml-variants.4.11.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+32bit/opam | 1 +
.../ocaml-variants.4.11.1+BER+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam | 1 +
.../ocaml-variants.4.11.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+flambda/opam | 1 +
.../ocaml-variants.4.11.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam | 1 +
.../ocaml-variants.4.11.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam | 1 +
.../ocaml-variants.4.11.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+flambda/opam | 1 +
.../ocaml-variants.4.11.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam | 1 +
.../ocaml-variants.4.11.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.2+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.2+spacetime/opam | 1 +
.../ocaml-variants.4.11.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.11.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk/opam | 1 +
.../ocaml-variants.4.12.0+domains+effects/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+domains/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.2+options/opam | 1 +
.../ocaml-variants.4.14.2~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.3+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam | 1 +
.../ocaml-variants.5.1.1+effect-syntax/opam | 1 +
.../ocaml-variants.5.1.1+flambda2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.0+options/opam | 1 +
.../ocaml-variants.5.2.0+statmemprof/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.1+options/opam | 1 +
.../ocaml-variants.5.2.1~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.1/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.15.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.16.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.0/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.2/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.3/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.5/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.6/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.8/opam | 1 +
packages/relocatable/relocatable.packages/opam | 18 ++++++++++++++++++
432 files changed, 464 insertions(+), 5 deletions(-)
create mode 100644 packages/relocatable/relocatable.packages/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 02:47.17 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-02 02:47.17 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-02 02:47.17 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-02 02:47.17 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-02 02:47.17 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 02:47.18 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 02:47.18 ---> using "3775e9b8ca53e7a42e175e2f214e7d345a02bf22f9dd6d271ae720654f277192" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (885 kB/s)
- Reading package lists...
-
2026-03-02 02:47.18 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocamlbuild.0.14.3 0.14.3"))
ocamlbuild is now pinned to version 0.14.3
2026-03-02 02:47.18 ---> using "963b801ba969ccb345fb2b0091d5b3fbc23c4ef4d4607da09cd43d88d10ecff1" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocamlbuild.0.14.3;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocamlbuild.0.14.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocamlbuild.0.14.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install ocamlbuild 0.14.3 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlbuild.0.14.3 (cached)
-> installed ocamlbuild.0.14.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 02:47.18 ---> using "4a148b5f24637bcde3a11bf41664920358bff04e05d35133cadbaf90cc750096" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-vdom.0.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-vdom.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-vdom.0.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 20 packages
- install cmdliner 2.1.0 [required by js_of_ocaml-compiler]
- install dune 3.21.1 [required by ocaml-vdom]
- install gen 1.1 [required by sedlex]
- install gen_js_api 1.1.7 [required by ocaml-vdom]
- install js_of_ocaml-compiler 6.3.2 [required by ocaml-vdom]
- install menhir 20260209 [required by js_of_ocaml-compiler]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by js_of_ocaml-compiler]
- install menhirSdk 20260209 [required by js_of_ocaml-compiler]
- install ocaml-compiler-libs v0.17.0 [required by js_of_ocaml-compiler]
- install ocaml-vdom 0.2
- install ojs 1.1.7 [required by gen_js_api]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.37.0 [required by gen_js_api]
- install sedlex 3.7 [required by js_of_ocaml-compiler]
- install seq base [required by gen]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install yojson 3.0.0 [required by js_of_ocaml-compiler]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved dune.3.21.1 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved gen_js_api.1.1.7, ojs.1.1.7 (cached)
-> retrieved js_of_ocaml-compiler.6.3.2 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml-vdom.0.2 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> installed cmdliner.2.1.0
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved sedlex.3.7 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed dune.3.21.1
-> installed menhirCST.20260209
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed menhirGLR.20260209
-> installed menhirSdk.20260209
-> installed menhirLib.20260209
-> installed gen.1.1
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed yojson.3.0.0
-> installed menhir.20260209
-> installed ppxlib.0.37.0
-> installed sedlex.3.7
-> installed js_of_ocaml-compiler.6.3.2
-> installed ojs.1.1.7
-> installed gen_js_api.1.1.7
-> installed ocaml-vdom.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 02:51.26 ---> saved as "fb64b1a5a9fcabc4c271ad4e8043ee54c1c649b9b43293ea61e1b735fafe4b3f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ocaml-vdom.0.2) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ocaml-vdom 0.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-vdom.0.2 (https://opam.ocaml.org/cache)
-> removed ocaml-vdom.0.2
-> installed ocaml-vdom.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 02:51.36 ---> saved as "1303a5fe0fbf7b742ed20fc5aaf52ed944b0a45740d2a9be60f7829f79f816df"
/home/opam: (run (shell "opam reinstall --with-test --verbose ocaml-vdom.0.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-vdom.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile ocaml-vdom 0.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [ocaml-vdom.0.2: extract]
-> retrieved ocaml-vdom.0.2 (cached)
Processing 2/4: [ocaml-vdom: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ocaml-vdom" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ocaml-vdom.0.2)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I lib/.vdom.objs/byte -I /home/opam/.opam/5.4/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/5.4/lib/ojs -cmi-file lib/.vdom.objs/byte/vdom_blit.cmi -no-alias-deps -o lib/.vdom.objs/byte/vdom_blit.cmo -c -impl lib/vdom_blit.ml)
- File "lib/vdom_blit.ml", line 204, characters 12-19:
- 204 | Ojs.set (Element.t_to_js dom) k (eval_prop v)
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 207, characters 10-17:
- 207 | Ojs.set
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 208, characters 13-20:
- 208 | (Ojs.get (Element.t_to_js dom) "style")
- ^^^^^^^
- Alert deprecated: Ojs.get
- Use Ojs.get_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 321, characters 10-17:
- 321 | Ojs.set (Element.t_to_js dom) k (eval_prop v)
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 323, characters 16-23:
- 323 | let clear k = Ojs.set (Element.t_to_js dom) k Ojs.null in
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 332, characters 16-23:
- 332 | let set k v = Ojs.set (Ojs.get (Element.t_to_js dom) "style") k (eval_prop v) in
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 332, characters 25-32:
- 332 | let set k v = Ojs.set (Ojs.get (Element.t_to_js dom) "style") k (eval_prop v) in
- ^^^^^^^
- Alert deprecated: Ojs.get
- Use Ojs.get_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 333, characters 16-23:
- 333 | let clear k = Ojs.set (Ojs.get (Element.t_to_js dom) "style") k js_empty_string in
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 333, characters 25-32:
- 333 | let clear k = Ojs.set (Ojs.get (Element.t_to_js dom) "style") k js_empty_string in
- ^^^^^^^
- Alert deprecated: Ojs.get
- Use Ojs.get_prop_ascii instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I lib/.vdom.objs/byte -I /home/opam/.opam/5.4/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/5.4/lib/ojs -cmi-file lib/.vdom.objs/byte/js_browser.cmi -no-alias-deps -o lib/.vdom.objs/byte/js_browser.cmo -c -impl lib/js_browser.ml)
- File "lib/js_browser.ml", line 30, characters 8-92:
- 30 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 36, characters 8-93:
- 36 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 42, characters 8-93:
- 42 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 49, characters 8-93:
- 49 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 55, characters 8-93:
- 55 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 59, characters 8-93:
- 59 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 104, characters 8-93:
- 104 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 110, characters 8-93:
- 110 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 116, characters 8-93:
- 116 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 121, characters 8-93:
- 121 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 126, characters 8-93:
- 126 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 132, characters 8-93:
- 132 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 291, characters 8-92:
- 291 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 296, characters 8-92:
- 296 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 301, characters 8-92:
- 301 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 313, characters 8-92:
- 313 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 864, characters 8-92:
- 864 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 869, characters 8-93:
- 869 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 874, characters 8-92:
- 874 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 881, characters 8-93:
- 881 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 886, characters 8-92:
- 886 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 891, characters 8-92:
- 891 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 896, characters 8-92:
- 896 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 901, characters 8-92:
- 901 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 906, characters 8-92:
- 906 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 911, characters 8-92:
- 911 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 916, characters 8-92:
- 916 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 921, characters 8-92:
- 921 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 926, characters 8-92:
- 926 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 931, characters 8-92:
- 931 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 936, characters 8-92:
- 936 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 941, characters 8-92:
- 941 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 946, characters 8-92:
- 946 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 951, characters 8-92:
- 951 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 956, characters 8-92:
- 956 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 961, characters 8-92:
- 961 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 966, characters 8-92:
- 966 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 972, characters 8-92:
- 972 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 976, characters 8-92:
- 976 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 981, characters 8-92:
- 981 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 992, characters 8-92:
- 992 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 997, characters 8-92:
- 997 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1002, characters 8-92:
- 1002 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1007, characters 8-92:
- 1007 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1012, characters 8-92:
- 1012 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1017, characters 8-92:
- 1017 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1028, characters 8-92:
- 1028 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1033, characters 8-92:
- 1033 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1038, characters 8-92:
- 1038 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1043, characters 8-92:
- 1043 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1051, characters 6-13:
- 1051 | Ojs.set (t_to_js style) prop (Ojs.string_to_js value)
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/js_browser.ml", line 1056, characters 8-92:
- 1056 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1061, characters 8-92:
- 1061 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1067, characters 8-92:
- 1067 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1073, characters 8-92:
- 1073 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1078, characters 8-92:
- 1078 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1083, characters 8-92:
- 1083 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1088, characters 8-92:
- 1088 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1093, characters 8-92:
- 1093 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1098, characters 8-92:
- 1098 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1103, characters 8-92:
- 1103 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1109, characters 8-92:
- 1109 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1114, characters 8-92:
- 1114 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1119, characters 8-92:
- 1119 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1120, characters 43-50:
- 1120 | let get style prop = Ojs.string_of_js (Ojs.get (t_to_js style) prop)
- ^^^^^^^
- Alert deprecated: Ojs.get
- Use Ojs.get_prop_ascii instead.
-
- File "lib/js_browser.ml", line 1133, characters 8-93:
- 1133 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1139, characters 8-93:
- 1139 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1144, characters 8-93:
- 1144 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1151, characters 8-93:
- 1151 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1158, characters 8-93:
- 1158 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1163, characters 8-93:
- 1163 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1168, characters 8-92:
- 1168 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1173, characters 8-92:
- 1173 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1178, characters 8-92:
- 1178 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1199, characters 8-93:
- 1199 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1220, characters 8-92:
- 1220 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1227, characters 8-93:
- 1227 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1234, characters 8-93:
- 1234 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1241, characters 8-93:
- 1241 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1248, characters 8-93:
- 1248 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1255, characters 8-93:
- 1255 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1262, characters 8-93:
- 1262 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1272, characters 8-93:
- 1272 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1277, characters 8-92:
- 1277 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1282, characters 8-92:
- 1282 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1286, characters 8-93:
- 1286 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1292, characters 8-92:
- 1292 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1297, characters 8-92:
- 1297 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1302, characters 8-92:
- 1302 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1307, characters 8-92:
- 1307 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1312, characters 8-92:
- 1312 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1318, characters 8-92:
- 1318 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1323, characters 8-92:
- 1323 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1328, characters 8-92:
- 1328 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1334, characters 8-93:
- 1334 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1339, characters 8-92:
- 1339 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1345, characters 8-92:
- 1345 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1351, characters 8-92:
- 1351 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1357, characters 8-92:
- 1357 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1362, characters 8-92:
- 1362 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1367, characters 8-92:
- 1367 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1372, characters 8-92:
- 1372 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1377, characters 8-92:
- 1377 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1382, characters 8-92:
- 1382 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1387, characters 8-92:
- 1387 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1392, characters 8-92:
- 1392 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1398, characters 8-92:
- 1398 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1403, characters 8-92:
- 1403 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1408, characters 8-92:
- 1408 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1413, characters 8-92:
- 1413 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1418, characters 8-92:
- 1418 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1423, characters 8-92:
- 1423 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1429, characters 8-92:
- 1429 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1433, characters 8-93:
- 1433 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1437, characters 8-93:
- 1437 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1442, characters 8-92:
- 1442 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1447, characters 8-92:
- 1447 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1453, characters 8-92:
- 1453 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1459, characters 8-92:
- 1459 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1463, characters 8-93:
- 1463 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1467, characters 8-93:
- 1467 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1480, characters 8-93:
- 1480 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1492, characters 8-93:
- 1492 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1499, characters 8-93:
- 1499 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1506, characters 8-93:
- 1506 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1513, characters 8-93:
- 1513 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1518, characters 8-92:
- 1518 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1524, characters 8-92:
- 1524 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1529, characters 8-92:
- 1529 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1534, characters 8-92:
- 1534 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1539, characters 8-92:
- 1539 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1544, characters 8-92:
- 1544 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1578, characters 8-93:
- 1578 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1585, characters 8-93:
- 1585 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1592, characters 8-93:
- 1592 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1607, characters 8-92:
- 1607 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1611, characters 8-93:
- 1611 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1615, characters 8-93:
- 1615 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1624, characters 8-93:
- 1624 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1631, characters 8-93:
- 1631 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1638, characters 8-93:
- 1638 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1658, characters 8-92:
- 1658 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1663, characters 8-92:
- 1663 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1668, characters 8-92:
- 1668 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1674, characters 8-92:
- 1674 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1688, characters 8-92:
- 1688 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1694, characters 8-92:
- 1694 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1699, characters 8-92:
- 1699 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1704, characters 8-92:
- 1704 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1709, characters 8-92:
- 1709 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1715, characters 8-92:
- 1715 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1720, characters 8-92:
- 1720 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1725, characters 8-92:
- 1725 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1745, characters 8-93:
- 1745 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1775, characters 8-93:
- 1775 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1796, characters 8-92:
- 1796 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1802, characters 8-92:
- 1802 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1809, characters 8-93:
- 1809 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1816, characters 8-93:
- 1816 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1823, characters 8-93:
- 1823 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1830, characters 8-93:
- 1830 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1838, characters 8-93:
- 1838 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1879, characters 8-93:
- 1879 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1885, characters 8-93:
- 1885 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1891, characters 8-92:
- 1891 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1897, characters 8-92:
- 1897 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1902, characters 8-92:
- 1902 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1907, characters 8-92:
- 1907 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1912, characters 8-92:
- 1912 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1917, characters 8-92:
- 1917 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1924, characters 8-93:
- 1924 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1931, characters 8-93:
- 1931 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1936, characters 8-92:
- 1936 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1941, characters 8-92:
- 1941 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1946, characters 8-92:
- 1946 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1953, characters 8-93:
- 1953 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1960, characters 8-93:
- 1960 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1970, characters 8-93:
- 1970 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1979, characters 8-92:
- 1979 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1985, characters 8-92:
- 1985 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2030, characters 8-92:
- 2030 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2035, characters 8-92:
- 2035 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2041, characters 8-92:
- 2041 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2048, characters 8-93:
- 2048 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2054, characters 8-93:
- 2054 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2071, characters 8-93:
- 2071 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2076, characters 8-93:
- 2076 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2083, characters 8-93:
- 2083 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2090, characters 8-93:
- 2090 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2096, characters 8-92:
- 2096 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2103, characters 8-93:
- 2103 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2109, characters 8-92:
- 2109 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2140, characters 8-92:
- 2140 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2145, characters 8-92:
- 2145 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2150, characters 8-92:
- 2150 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2154, characters 8-92:
- 2154 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2160, characters 8-92:
- 2160 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2206, characters 8-93:
- 2206 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2229, characters 8-93:
- 2229 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2234, characters 8-92:
- 2234 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2240, characters 8-92:
- 2240 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2245, characters 8-92:
- 2245 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2257, characters 8-93:
- 2257 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2268, characters 12-96:
- 2268 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2274, characters 4-91:
- 2274 | "Heuristic for automatic binding is deprecated; please add the '@js.global' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.global' attribute.
-
- File "lib/js_browser.ml", line 2278, characters 4-91:
- 2278 | "Heuristic for automatic binding is deprecated; please add the '@js.global' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.global' attribute.
-
- File "lib/js_browser.ml", line 2320, characters 8-92:
- 2320 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2330, characters 8-92:
- 2330 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2336, characters 8-92:
- 2336 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2347, characters 8-93:
- 2347 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2354, characters 8-93:
- 2354 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2359, characters 8-93:
- 2359 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2364, characters 8-93:
- 2364 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2374, characters 8-93:
- 2374 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2381, characters 8-93:
- 2381 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2388, characters 8-93:
- 2388 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2393, characters 8-93:
- 2393 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2398, characters 8-93:
- 2398 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2408, characters 8-93:
- 2408 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2418, characters 8-93:
- 2418 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2424, characters 8-92:
- 2424 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2432, characters 8-93:
- 2432 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2440, characters 8-93:
- 2440 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2450, characters 12-96:
- 2450 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2458, characters 8-93:
- 2458 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2465, characters 8-93:
- 2465 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2472, characters 8-93:
- 2472 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2479, characters 8-93:
- 2479 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2489, characters 8-93:
- 2489 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2507, characters 8-93:
- 2507 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2512, characters 4-91:
- 2512 | "Heuristic for automatic binding is deprecated; please add the '@js.global' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.global' attribute.
-
- File "lib/js_browser.ml", line 2539, characters 8-98:
- 2539 | "Heuristic for automatic binding is deprecated; please add the '@js.index_set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.index_set' attribute.
-
- File "lib/js_browser.ml", line 2592, characters 8-93:
- 2592 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2618, characters 12-96:
- 2618 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2623, characters 12-96:
- 2623 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2629, characters 12-96:
- 2629 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2635, characters 12-96:
- 2635 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2646, characters 12-96:
- 2646 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2651, characters 12-96:
- 2651 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2701, characters 12-96:
- 2701 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2706, characters 12-96:
- 2706 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2711, characters 12-96:
- 2711 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2716, characters 12-96:
- 2716 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2721, characters 12-96:
- 2721 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2726, characters 12-96:
- 2726 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2732, characters 12-96:
- 2732 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2738, characters 12-96:
- 2738 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2750, characters 12-96:
- 2750 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2785, characters 12-96:
- 2785 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2791, characters 12-96:
- 2791 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2797, characters 12-96:
- 2797 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2804, characters 12-96:
- 2804 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-> compiled ocaml-vdom.0.2
-> removed ocaml-vdom.0.2
-> installed ocaml-vdom.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 02:51.46 ---> saved as "d31296d77632f4a36e6499163d8776c31091fcdca96b1e68429045a327ca2f1e"
Job succeeded
2026-03-02 02:52.01: Job succeeded