Build:
- 0
2026-03-25 13:14.58: New job: test ocaml-vdom.0.2 with ocaml-compiler.5.4.0~rc1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0~rc1 5.4.0~rc1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1; \
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-compiler.5.4.0~rc1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall ocaml-vdom.0.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-vdom.0.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test ocaml-vdom.0.2) || true
RUN opam reinstall --with-test --verbose ocaml-vdom.0.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-vdom.0.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-25 13:14.58: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~rc1-ocaml-vdom.0.2-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.58: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
(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 ocaml-compiler.5.4.0~rc1 5.4.0~rc1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1;\
\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-compiler.5.4.0~rc1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-vdom.0.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-vdom.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test ocaml-vdom.0.2) || true"))
(run (shell "opam reinstall --with-test --verbose ocaml-vdom.0.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-vdom.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-25 13:14.58: Waiting for resource in pool OCluster
2026-03-25 20:44.33: Waiting for worker…
2026-03-25 20:46.37: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.5/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.6/opam | 5 ++++-
packages/ocaml-option-llvm/ocaml-option-llvm.1/opam | 18 ++++++++++++++++++
.../ocaml-options-vanilla/ocaml-options-vanilla.1/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 2 ++
15 files changed, 69 insertions(+), 12 deletions(-)
create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 20:46.52 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-25 20:46.52 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 20:46.52 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-25 20:46.52 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-25 20:46.52 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 20:46.53 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 20:46.53 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (10.9 MB/s)
- Reading package lists...
-
2026-03-25 20:46.53 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~rc1 5.4.0~rc1"))
ocaml-compiler is now pinned to version 5.4.0~rc1
2026-03-25 20:46.53 ---> using "27ab7a5f0bff149d4782fba34c0f12f25c2745e4b7ce18ded4528e7b01215403" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1;\
\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-compiler.5.4.0~rc1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-compiler.5.4.0~rc1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
- remove ocaml-base-compiler 5.4.0 (pinned) [conflicts with ocaml-compiler]
=== downgrade 1 package
- downgrade ocaml-compiler 5.4.0 to 5.4.0~rc1 (pinned)
=== recompile 6 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 1 package
- install ocaml-variants 5.4.0~rc1+options [required by ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~rc1 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~rc1
-> installed ocaml-variants.5.4.0~rc1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~rc1+options"}]
Use `opam switch set-invariant' to change it.
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 20:46.53 ---> using "b49b6ed909e77c558f677915e871ebeabba006ff37f3f132a79670cd2a9f5db8" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ocaml-vdom.0.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-vdom.0.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-vdom.0.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 20 packages
- install cmdliner 2.1.0 [required by js_of_ocaml-compiler]
- install dune 3.22.0 [required by ocaml-vdom]
- install gen 1.1 [required by sedlex]
- install gen_js_api 1.1.7 [required by ocaml-vdom]
- install js_of_ocaml-compiler 6.3.2 [required by ocaml-vdom]
- install menhir 20260209 [required by js_of_ocaml-compiler]
- install menhirCST 20260209 [required by menhir]
- install menhirGLR 20260209 [required by menhir]
- install menhirLib 20260209 [required by js_of_ocaml-compiler]
- install menhirSdk 20260209 [required by js_of_ocaml-compiler]
- install ocaml-compiler-libs v0.17.0 [required by js_of_ocaml-compiler]
- install ocaml-vdom 0.2
- install ojs 1.1.7 [required by gen_js_api]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.37.0 [required by gen_js_api]
- install sedlex 3.7 [required by js_of_ocaml-compiler]
- install seq base [required by gen]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install yojson 3.0.0 [required by js_of_ocaml-compiler]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved dune.3.22.0 (cached)
-> retrieved gen.1.1 (cached)
-> retrieved gen_js_api.1.1.7, ojs.1.1.7 (cached)
-> retrieved js_of_ocaml-compiler.6.3.2 (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached)
-> installed cmdliner.2.1.0
-> retrieved ocaml-compiler-libs.v0.17.0 (cached)
-> retrieved ocaml-vdom.0.2 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppxlib.0.37.0 (cached)
-> retrieved sedlex.3.7 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved yojson.3.0.0 (cached)
-> installed dune.3.22.0
-> installed menhirCST.20260209
-> installed ppx_derivers.1.2.1
-> installed menhirGLR.20260209
-> installed gen.1.1
-> installed menhirLib.20260209
-> installed stdlib-shims.0.3.0
-> installed menhirSdk.20260209
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed yojson.3.0.0
-> installed menhir.20260209
-> installed ppxlib.0.37.0
-> installed sedlex.3.7
-> installed js_of_ocaml-compiler.6.3.2
-> installed ojs.1.1.7
-> installed gen_js_api.1.1.7
-> installed ocaml-vdom.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 20:48.00 ---> saved as "5cb4db0a77684ca266ab0ce33f59da5a5c80b6f950202338c992671030fbd3e8"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ocaml-vdom.0.2) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ocaml-vdom 0.2
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-vdom.0.2 (https://opam.ocaml.org/cache)
-> removed ocaml-vdom.0.2
-> installed ocaml-vdom.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 20:48.04 ---> saved as "92c5ffea46ee83ffaaf4392479d89d4d2ebf13a3b9b1b94deac6c737eb476583"
/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" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ocaml-vdom.0.2)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I lib/.vdom.objs/byte -I /home/opam/.opam/5.4/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/5.4/lib/ojs -cmi-file lib/.vdom.objs/byte/vdom_blit.cmi -no-alias-deps -o lib/.vdom.objs/byte/vdom_blit.cmo -c -impl lib/vdom_blit.ml)
- File "lib/vdom_blit.ml", line 204, characters 12-19:
- 204 | Ojs.set (Element.t_to_js dom) k (eval_prop v)
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 207, characters 10-17:
- 207 | Ojs.set
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 208, characters 13-20:
- 208 | (Ojs.get (Element.t_to_js dom) "style")
- ^^^^^^^
- Alert deprecated: Ojs.get
- Use Ojs.get_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 321, characters 10-17:
- 321 | Ojs.set (Element.t_to_js dom) k (eval_prop v)
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 323, characters 16-23:
- 323 | let clear k = Ojs.set (Element.t_to_js dom) k Ojs.null in
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 332, characters 16-23:
- 332 | let set k v = Ojs.set (Ojs.get (Element.t_to_js dom) "style") k (eval_prop v) in
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 332, characters 25-32:
- 332 | let set k v = Ojs.set (Ojs.get (Element.t_to_js dom) "style") k (eval_prop v) in
- ^^^^^^^
- Alert deprecated: Ojs.get
- Use Ojs.get_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 333, characters 16-23:
- 333 | let clear k = Ojs.set (Ojs.get (Element.t_to_js dom) "style") k js_empty_string in
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/vdom_blit.ml", line 333, characters 25-32:
- 333 | let clear k = Ojs.set (Ojs.get (Element.t_to_js dom) "style") k js_empty_string in
- ^^^^^^^
- Alert deprecated: Ojs.get
- Use Ojs.get_prop_ascii instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I lib/.vdom.objs/byte -I /home/opam/.opam/5.4/lib/js_of_ocaml-compiler/runtime -I /home/opam/.opam/5.4/lib/ojs -cmi-file lib/.vdom.objs/byte/js_browser.cmi -no-alias-deps -o lib/.vdom.objs/byte/js_browser.cmo -c -impl lib/js_browser.ml)
- File "lib/js_browser.ml", line 30, characters 8-92:
- 30 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 36, characters 8-93:
- 36 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 42, characters 8-93:
- 42 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 49, characters 8-93:
- 49 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 55, characters 8-93:
- 55 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 59, characters 8-93:
- 59 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 104, characters 8-93:
- 104 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 110, characters 8-93:
- 110 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 116, characters 8-93:
- 116 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 121, characters 8-93:
- 121 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 126, characters 8-93:
- 126 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 132, characters 8-93:
- 132 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 291, characters 8-92:
- 291 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 296, characters 8-92:
- 296 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 301, characters 8-92:
- 301 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 313, characters 8-92:
- 313 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 864, characters 8-92:
- 864 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 869, characters 8-93:
- 869 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 874, characters 8-92:
- 874 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 881, characters 8-93:
- 881 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 886, characters 8-92:
- 886 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 891, characters 8-92:
- 891 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 896, characters 8-92:
- 896 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 901, characters 8-92:
- 901 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 906, characters 8-92:
- 906 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 911, characters 8-92:
- 911 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 916, characters 8-92:
- 916 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 921, characters 8-92:
- 921 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 926, characters 8-92:
- 926 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 931, characters 8-92:
- 931 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 936, characters 8-92:
- 936 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 941, characters 8-92:
- 941 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 946, characters 8-92:
- 946 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 951, characters 8-92:
- 951 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 956, characters 8-92:
- 956 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 961, characters 8-92:
- 961 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 966, characters 8-92:
- 966 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 972, characters 8-92:
- 972 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 976, characters 8-92:
- 976 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 981, characters 8-92:
- 981 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 992, characters 8-92:
- 992 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 997, characters 8-92:
- 997 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1002, characters 8-92:
- 1002 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1007, characters 8-92:
- 1007 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1012, characters 8-92:
- 1012 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1017, characters 8-92:
- 1017 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1028, characters 8-92:
- 1028 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1033, characters 8-92:
- 1033 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1038, characters 8-92:
- 1038 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1043, characters 8-92:
- 1043 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1051, characters 6-13:
- 1051 | Ojs.set (t_to_js style) prop (Ojs.string_to_js value)
- ^^^^^^^
- Alert deprecated: Ojs.set
- Use Ojs.set_prop_ascii instead.
-
- File "lib/js_browser.ml", line 1056, characters 8-92:
- 1056 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1061, characters 8-92:
- 1061 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1067, characters 8-92:
- 1067 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1073, characters 8-92:
- 1073 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1078, characters 8-92:
- 1078 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1083, characters 8-92:
- 1083 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1088, characters 8-92:
- 1088 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1093, characters 8-92:
- 1093 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1098, characters 8-92:
- 1098 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1103, characters 8-92:
- 1103 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1109, characters 8-92:
- 1109 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1114, characters 8-92:
- 1114 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1119, characters 8-92:
- 1119 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1120, characters 43-50:
- 1120 | let get style prop = Ojs.string_of_js (Ojs.get (t_to_js style) prop)
- ^^^^^^^
- Alert deprecated: Ojs.get
- Use Ojs.get_prop_ascii instead.
-
- File "lib/js_browser.ml", line 1133, characters 8-93:
- 1133 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1139, characters 8-93:
- 1139 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1144, characters 8-93:
- 1144 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1151, characters 8-93:
- 1151 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1158, characters 8-93:
- 1158 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1163, characters 8-93:
- 1163 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1168, characters 8-92:
- 1168 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1173, characters 8-92:
- 1173 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1178, characters 8-92:
- 1178 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1199, characters 8-93:
- 1199 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1220, characters 8-92:
- 1220 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1227, characters 8-93:
- 1227 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1234, characters 8-93:
- 1234 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1241, characters 8-93:
- 1241 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1248, characters 8-93:
- 1248 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1255, characters 8-93:
- 1255 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1262, characters 8-93:
- 1262 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1272, characters 8-93:
- 1272 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1277, characters 8-92:
- 1277 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1282, characters 8-92:
- 1282 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1286, characters 8-93:
- 1286 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1292, characters 8-92:
- 1292 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1297, characters 8-92:
- 1297 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1302, characters 8-92:
- 1302 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1307, characters 8-92:
- 1307 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1312, characters 8-92:
- 1312 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1318, characters 8-92:
- 1318 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1323, characters 8-92:
- 1323 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1328, characters 8-92:
- 1328 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1334, characters 8-93:
- 1334 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1339, characters 8-92:
- 1339 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1345, characters 8-92:
- 1345 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1351, characters 8-92:
- 1351 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1357, characters 8-92:
- 1357 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1362, characters 8-92:
- 1362 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1367, characters 8-92:
- 1367 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1372, characters 8-92:
- 1372 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1377, characters 8-92:
- 1377 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1382, characters 8-92:
- 1382 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1387, characters 8-92:
- 1387 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1392, characters 8-92:
- 1392 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1398, characters 8-92:
- 1398 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1403, characters 8-92:
- 1403 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1408, characters 8-92:
- 1408 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1413, characters 8-92:
- 1413 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1418, characters 8-92:
- 1418 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1423, characters 8-92:
- 1423 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1429, characters 8-92:
- 1429 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1433, characters 8-93:
- 1433 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1437, characters 8-93:
- 1437 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1442, characters 8-92:
- 1442 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1447, characters 8-92:
- 1447 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1453, characters 8-92:
- 1453 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1459, characters 8-92:
- 1459 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1463, characters 8-93:
- 1463 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1467, characters 8-93:
- 1467 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1480, characters 8-93:
- 1480 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1492, characters 8-93:
- 1492 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1499, characters 8-93:
- 1499 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1506, characters 8-93:
- 1506 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1513, characters 8-93:
- 1513 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1518, characters 8-92:
- 1518 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1524, characters 8-92:
- 1524 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1529, characters 8-92:
- 1529 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1534, characters 8-92:
- 1534 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1539, characters 8-92:
- 1539 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1544, characters 8-92:
- 1544 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1578, characters 8-93:
- 1578 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1585, characters 8-93:
- 1585 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1592, characters 8-93:
- 1592 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1607, characters 8-92:
- 1607 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1611, characters 8-93:
- 1611 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1615, characters 8-93:
- 1615 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1624, characters 8-93:
- 1624 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1631, characters 8-93:
- 1631 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1638, characters 8-93:
- 1638 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1658, characters 8-92:
- 1658 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1663, characters 8-92:
- 1663 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1668, characters 8-92:
- 1668 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1674, characters 8-92:
- 1674 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1688, characters 8-92:
- 1688 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1694, characters 8-92:
- 1694 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1699, characters 8-92:
- 1699 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1704, characters 8-92:
- 1704 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1709, characters 8-92:
- 1709 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1715, characters 8-92:
- 1715 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1720, characters 8-92:
- 1720 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1725, characters 8-92:
- 1725 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1745, characters 8-93:
- 1745 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1775, characters 8-93:
- 1775 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1796, characters 8-92:
- 1796 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1802, characters 8-92:
- 1802 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 1809, characters 8-93:
- 1809 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1816, characters 8-93:
- 1816 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1823, characters 8-93:
- 1823 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1830, characters 8-93:
- 1830 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1838, characters 8-93:
- 1838 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1879, characters 8-93:
- 1879 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1885, characters 8-93:
- 1885 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1891, characters 8-92:
- 1891 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1897, characters 8-92:
- 1897 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1902, characters 8-92:
- 1902 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1907, characters 8-92:
- 1907 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1912, characters 8-92:
- 1912 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1917, characters 8-92:
- 1917 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1924, characters 8-93:
- 1924 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1931, characters 8-93:
- 1931 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1936, characters 8-92:
- 1936 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1941, characters 8-92:
- 1941 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1946, characters 8-92:
- 1946 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1953, characters 8-93:
- 1953 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1960, characters 8-93:
- 1960 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1970, characters 8-93:
- 1970 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 1979, characters 8-92:
- 1979 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 1985, characters 8-92:
- 1985 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2030, characters 8-92:
- 2030 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2035, characters 8-92:
- 2035 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2041, characters 8-92:
- 2041 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2048, characters 8-93:
- 2048 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2054, characters 8-93:
- 2054 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2071, characters 8-93:
- 2071 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2076, characters 8-93:
- 2076 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2083, characters 8-93:
- 2083 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2090, characters 8-93:
- 2090 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2096, characters 8-92:
- 2096 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2103, characters 8-93:
- 2103 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2109, characters 8-92:
- 2109 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2140, characters 8-92:
- 2140 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2145, characters 8-92:
- 2145 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2150, characters 8-92:
- 2150 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2154, characters 8-92:
- 2154 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2160, characters 8-92:
- 2160 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2206, characters 8-93:
- 2206 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2229, characters 8-93:
- 2229 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2234, characters 8-92:
- 2234 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2240, characters 8-92:
- 2240 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2245, characters 8-92:
- 2245 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2257, characters 8-93:
- 2257 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2268, characters 12-96:
- 2268 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2274, characters 4-91:
- 2274 | "Heuristic for automatic binding is deprecated; please add the '@js.global' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.global' attribute.
-
- File "lib/js_browser.ml", line 2278, characters 4-91:
- 2278 | "Heuristic for automatic binding is deprecated; please add the '@js.global' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.global' attribute.
-
- File "lib/js_browser.ml", line 2320, characters 8-92:
- 2320 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2330, characters 8-92:
- 2330 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2336, characters 8-92:
- 2336 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2347, characters 8-93:
- 2347 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2354, characters 8-93:
- 2354 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2359, characters 8-93:
- 2359 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2364, characters 8-93:
- 2364 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2374, characters 8-93:
- 2374 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2381, characters 8-93:
- 2381 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2388, characters 8-93:
- 2388 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2393, characters 8-93:
- 2393 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2398, characters 8-93:
- 2398 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2408, characters 8-93:
- 2408 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2418, characters 8-93:
- 2418 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2424, characters 8-92:
- 2424 | "Heuristic for automatic binding is deprecated; please add the '@js.set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.set' attribute.
-
- File "lib/js_browser.ml", line 2432, characters 8-93:
- 2432 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2440, characters 8-93:
- 2440 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2450, characters 12-96:
- 2450 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2458, characters 8-93:
- 2458 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2465, characters 8-93:
- 2465 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2472, characters 8-93:
- 2472 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2479, characters 8-93:
- 2479 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2489, characters 8-93:
- 2489 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2507, characters 8-93:
- 2507 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2512, characters 4-91:
- 2512 | "Heuristic for automatic binding is deprecated; please add the '@js.global' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.global' attribute.
-
- File "lib/js_browser.ml", line 2539, characters 8-98:
- 2539 | "Heuristic for automatic binding is deprecated; please add the '@js.index_set' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.index_set' attribute.
-
- File "lib/js_browser.ml", line 2592, characters 8-93:
- 2592 | "Heuristic for automatic binding is deprecated; please add the '@js.call' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.call' attribute.
-
- File "lib/js_browser.ml", line 2618, characters 12-96:
- 2618 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2623, characters 12-96:
- 2623 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2629, characters 12-96:
- 2629 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2635, characters 12-96:
- 2635 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2646, characters 12-96:
- 2646 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2651, characters 12-96:
- 2651 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2701, characters 12-96:
- 2701 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2706, characters 12-96:
- 2706 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2711, characters 12-96:
- 2711 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2716, characters 12-96:
- 2716 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2721, characters 12-96:
- 2721 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2726, characters 12-96:
- 2726 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2732, characters 12-96:
- 2732 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2738, characters 12-96:
- 2738 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2750, characters 12-96:
- 2750 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2785, characters 12-96:
- 2785 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2791, characters 12-96:
- 2791 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2797, characters 12-96:
- 2797 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-
- File "lib/js_browser.ml", line 2804, characters 12-96:
- 2804 | "Heuristic for automatic binding is deprecated; please add the '@js.get' attribute."])
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Heuristic for automatic binding is deprecated; please add the '@js.get' attribute.
-> compiled ocaml-vdom.0.2
-> removed ocaml-vdom.0.2
-> installed ocaml-vdom.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 20:48.08 ---> saved as "edbbd82f1b36438f1fbff78fcc071fbe95fc7d4c24f6fc33f88214449acffc7e"
Job succeeded
2026-03-25 20:48.17: Job succeeded