Build:
- 0
2025-12-11 02:46.27: New job: test ocaml-vdom.0.2 with dune-configurator.3.21.0~alpha3, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29070/head (a95df9014bc79103fde668cf2adbe6680fd2f9cf)
on debian-13-ocaml-4.14/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/29070/head" && git reset --hard a95df901
git fetch origin master
git merge --no-edit 810e1f14b7fa6411c66a3549f4c2aff47c52fc36
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
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 dune-configurator.3.21.0~alpha3 3.21.0~alpha3
RUN opam reinstall dune-configurator.3.21.0~alpha3; \
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" != 'dune-configurator.3.21.0~alpha3' && 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 .
2025-12-11 02:46.27: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d-dune-configurator.3.21.0~alpha3-ocaml-vdom.0.2-a95df9014bc79103fde668cf2adbe6680fd2f9cf"
2025-12-11 02:46.27: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
(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 dune-configurator.3.21.0~alpha3 3.21.0~alpha3"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.21.0~alpha3;\
\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\" != 'dune-configurator.3.21.0~alpha3' && 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"))
)
2025-12-11 02:46.27: Waiting for resource in pool OCluster
2025-12-11 08:17.03: Waiting for worker…
2025-12-11 08:34.07: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 74% (14259/19017)
Updating files: 75% (14263/19017)
Updating files: 76% (14453/19017)
Updating files: 77% (14644/19017)
Updating files: 78% (14834/19017)
Updating files: 79% (15024/19017)
Updating files: 80% (15214/19017)
Updating files: 81% (15404/19017)
Updating files: 82% (15594/19017)
Updating files: 83% (15785/19017)
Updating files: 84% (15975/19017)
Updating files: 85% (16165/19017)
Updating files: 86% (16355/19017)
Updating files: 87% (16545/19017)
Updating files: 88% (16735/19017)
Updating files: 89% (16926/19017)
Updating files: 90% (17116/19017)
Updating files: 91% (17306/19017)
Updating files: 92% (17496/19017)
Updating files: 93% (17686/19017)
Updating files: 94% (17876/19017)
Updating files: 95% (18067/19017)
Updating files: 96% (18257/19017)
Updating files: 97% (18447/19017)
Updating files: 98% (18637/19017)
Updating files: 99% (18827/19017)
Updating files: 100% (19017/19017)
Updating files: 100% (19017/19017), done.
HEAD is now at 810e1f14b7 Merge pull request #29066 from gares/release-elpi-v3.4.4
Updating 810e1f14b7..a95df9014b
Fast-forward
.../chrome-trace/chrome-trace.3.21.0~alpha3/opam | 41 ++++++++++++
.../dune-action-plugin.3.21.0~alpha3/opam | 54 ++++++++++++++++
.../dune-build-info.3.21.0~alpha3/opam | 47 ++++++++++++++
.../dune-configurator.3.21.0~alpha3/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.21.0~alpha3/opam | 44 +++++++++++++
.../dune-private-libs.3.21.0~alpha3/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha3/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.21.0~alpha3/opam | 46 +++++++++++++
packages/dune-site/dune-site.3.21.0~alpha3/opam | 39 +++++++++++
packages/dune/dune.3.21.0~alpha3/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.21.0~alpha3/opam | 42 ++++++++++++
packages/fs-io/fs-io.3.21.0~alpha3/opam | 40 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha3/opam | 45 +++++++++++++
packages/ordering/ordering.3.21.0~alpha3/opam | 40 ++++++++++++
packages/stdune/stdune.3.21.0~alpha3/opam | 48 ++++++++++++++
.../top-closure/top-closure.3.21.0~alpha3/opam | 39 +++++++++++
packages/xdg/xdg.3.21.0~alpha3/opam | 41 ++++++++++++
17 files changed, 787 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha3/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha3/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha3/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha3/opam
create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha3/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha3/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha3/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha3/opam
create mode 100644 packages/dune-site/dune-site.3.21.0~alpha3/opam
create mode 100644 packages/dune/dune.3.21.0~alpha3/opam
create mode 100644 packages/dyn/dyn.3.21.0~alpha3/opam
create mode 100644 packages/fs-io/fs-io.3.21.0~alpha3/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha3/opam
create mode 100644 packages/ordering/ordering.3.21.0~alpha3/opam
create mode 100644 packages/stdune/stdune.3.21.0~alpha3/opam
create mode 100644 packages/top-closure/top-closure.3.21.0~alpha3/opam
create mode 100644 packages/xdg/xdg.3.21.0~alpha3/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d' locally
docker.io/ocaml/opam@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d: Pulling from ocaml/opam
53c88f1dfeb7: Already exists
268d44a12236: Already exists
f2f36c7402e3: Already exists
9eb2778f421b: Already exists
3ca35f1ec5ed: Already exists
b08866568793: Already exists
fb0d17ce08c9: Already exists
c8db2c4fd670: Already exists
5fa8cfe8f9cb: Already exists
e7f5f7180a56: Already exists
9f66154be4d4: Already exists
f6674de6e5d4: Already exists
80eb63632584: Already exists
66f55aa69346: Already exists
d121bc397a1a: Already exists
0eff100405dd: Already exists
7d67d217736c: Already exists
ac7107dc3d00: Already exists
f01a17be3cef: Already exists
30a38827b55c: Already exists
085733096c8e: Already exists
86db5d63aa02: Already exists
4f4fb700ef54: Already exists
034a62edceac: Already exists
808c1ae36c95: Already exists
eba808bca592: Already exists
68b2bb6a330b: Already exists
9fee74853ab2: Already exists
00d667d2b4f9: Already exists
cde2288b7be2: Already exists
6e6039e741bd: Already exists
08dc627d7129: Already exists
fbbf04bee28a: Already exists
cf124fccb693: Already exists
16001ee30892: Already exists
a379ebcf721f: Already exists
c05951b4b1dd: Already exists
1238fc26ec9b: Already exists
33d5b2862e74: Already exists
6a5c5f5e740e: Already exists
f97083767ae6: Already exists
5fbf3379e3de: Pulling fs layer
fa7fd9ad7954: Pulling fs layer
c0b4ac729b41: Pulling fs layer
40482318cf81: Pulling fs layer
fa7fd9ad7954: Verifying Checksum
fa7fd9ad7954: Download complete
c0b4ac729b41: Download complete
40482318cf81: Verifying Checksum
40482318cf81: Download complete
5fbf3379e3de: Download complete
5fbf3379e3de: Pull complete
fa7fd9ad7954: Pull complete
c0b4ac729b41: Pull complete
40482318cf81: Pull complete
Digest: sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
Status: Downloaded newer image for ocaml/opam@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
2025-12-11 08:34.20 ---> using "d81b3b20b9dbe813f4813251eb45f7f230344599357169e34b0d2f872bf65895" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-11 08:34.20 ---> using "4c0c738834a7be54719ab9b07c911eba51e45ad4298c42597f7d3da72b1c15d4" 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
2025-12-11 08:34.20 ---> using "8bb6d27bb5f7ebe9771219e3ecd730184d5e10ab877134c11c12ee3b1a6d3b96" 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 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2025-12-11 08:34.20 ---> using "35019bd57e8933485bd938828fe288c3674216a4757e13b1dac8ce6b21035ac2" 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/"))
2025-12-11 08:34.20 ---> using "e09ab9992a764acab15da9cff99e3d4d978b8a77f33714cc5d19d16d3539eb49" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-11 08:34.22 ---> using "8f784899c04798d44128ca0480da55c2b9cf6d274974843ef0505a70d687f2db" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-11 08:34.22 ---> using "2b089ce953d9701360553588b495e1bed1b68a44304bde1817c2d61d9d0cfb13" 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 [82.1 kB]
- Fetched 173 kB in 0s (1662 kB/s)
- Reading package lists...
-
2025-12-11 08:34.22 ---> using "66aa292a4a8c262cd0de67bf9051bc0bb23ef81009eeb9a242c201bbf02a4d3c" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.21.0~alpha3 3.21.0~alpha3"))
dune-configurator is now pinned to version 3.21.0~alpha3
2025-12-11 08:34.22 ---> using "ba7e265cc9fa3a24a4f366d35f981c9be428e499eeb68655bb78e920ec0635bb" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune-configurator.3.21.0~alpha3;\
\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\" != 'dune-configurator.3.21.0~alpha3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune-configurator.3.21.0~alpha3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
- install csexp 1.5.2 [required by dune-configurator]
- install dune 3.21.0~alpha3 [required by dune-configurator]
- install dune-configurator 3.21.0~alpha3 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved dune.3.21.0~alpha3, dune-configurator.3.21.0~alpha3 (cached)
-> installed dune.3.21.0~alpha3
-> installed csexp.1.5.2
-> installed dune-configurator.3.21.0~alpha3
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 08:34.22 ---> using "0a79edf45ff69d85a85b5b2da96ef74fc1ca6f775d07bb85894a17548990487c" 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 18 packages
- install cmdliner 2.1.0 [required by js_of_ocaml-compiler]
- install gen 1.1 [required by sedlex]
- install gen_js_api 1.1.6 [required by ocaml-vdom]
- install js_of_ocaml-compiler 6.2.0 [required by ocaml-vdom]
- install menhir 20250912 [required by js_of_ocaml-compiler]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by js_of_ocaml-compiler]
- install menhirSdk 20250912 [required by js_of_ocaml-compiler]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocaml-vdom 0.2
- install ojs 1.1.6 [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 gen.1.1 (cached)
-> retrieved gen_js_api.1.1.6, ojs.1.1.6 (cached)
-> retrieved js_of_ocaml-compiler.6.2.0 (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocaml-vdom.0.2 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> installed menhirCST.20250912
-> retrieved ppxlib.0.37.0 (cached)
-> installed ppx_derivers.1.2.1
-> 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 menhirSdk.20250912
-> installed stdlib-shims.0.3.0
-> installed menhirLib.20250912
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed gen.1.1
-> installed cmdliner.2.1.0
-> installed yojson.3.0.0
-> installed menhir.20250912
-> installed ppxlib.0.37.0
-> installed sedlex.3.7
-> installed js_of_ocaml-compiler.6.2.0
-> installed ojs.1.1.6
-> installed gen_js_api.1.1.6
-> installed ocaml-vdom.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-11 08:35.28 ---> saved as "418b7d01d30802164806193eda5183d792bde846d91fc41a2de275ae47a840c0"
/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)
2025-12-11 08:35.34 ---> saved as "6787c3197ba9dbf8429a24f8112ee9c788a5ccb0b3d5c0064dd7c687ee57e6a6"
/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/4.14/.opam-switch/build/ocaml-vdom.0.2)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.vdom.objs/byte -I /home/opam/.opam/4.14/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/4.14/lib/ojs -intf-suffix .ml -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/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.vdom.objs/byte -I /home/opam/.opam/4.14/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/4.14/lib/ojs -intf-suffix .ml -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)
2025-12-11 08:35.39 ---> saved as "19f0a12da2846af61af668e1a6b275e300f486e3502a8b85609c3ce0ec57aa3d"
Job succeeded
2025-12-11 08:35.45: Job succeeded