Build:
- 0
2026-02-26 12:33.05: New job: test javalib.3.0 with conf-zlib.1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29394/head (42b7d54d05b5bc7b2acd4b8e282016921f6064ca)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29394/head" && git reset --hard 42b7d54d
git fetch origin master
git merge --no-edit e5f44b75d9fef9e17658ad0da2eb5f9a3445c951
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633
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 conf-zlib.1 1
RUN opam reinstall conf-zlib.1; \
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" != 'conf-zlib.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall javalib.3.0; \
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" != 'javalib.3.0' && 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 javalib.3.0) || true
RUN opam reinstall --with-test --verbose javalib.3.0; \
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" != 'javalib.3.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-02-26 12:33.05: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633-conf-zlib.1-javalib.3.0-42b7d54d05b5bc7b2acd4b8e282016921f6064ca"
2026-02-26 12:33.05: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
(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 conf-zlib.1 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-zlib.1;\
\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\" != 'conf-zlib.1' && 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 javalib.3.0;\
\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\" != 'javalib.3.0' && 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 javalib.3.0) || true"))
(run (shell "opam reinstall --with-test --verbose javalib.3.0;\
\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\" != 'javalib.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-26 12:33.05: Waiting for resource in pool OCluster
2026-02-27 02:59.31: Waiting for worker…
2026-02-27 03:08.17: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files: 65% (12079/18322)
Updating files: 66% (12093/18322)
Updating files: 67% (12276/18322)
Updating files: 68% (12459/18322)
Updating files: 69% (12643/18322)
Updating files: 70% (12826/18322)
Updating files: 71% (13009/18322)
Updating files: 72% (13192/18322)
Updating files: 73% (13376/18322)
Updating files: 74% (13559/18322)
Updating files: 75% (13742/18322)
Updating files: 76% (13925/18322)
Updating files: 77% (14108/18322)
Updating files: 78% (14292/18322)
Updating files: 79% (14475/18322)
Updating files: 80% (14658/18322)
Updating files: 81% (14841/18322)
Updating files: 82% (15025/18322)
Updating files: 83% (15208/18322)
Updating files: 84% (15391/18322)
Updating files: 85% (15574/18322)
Updating files: 86% (15757/18322)
Updating files: 87% (15941/18322)
Updating files: 88% (16124/18322)
Updating files: 89% (16307/18322)
Updating files: 90% (16490/18322)
Updating files: 91% (16674/18322)
Updating files: 92% (16857/18322)
Updating files: 93% (17040/18322)
Updating files: 94% (17223/18322)
Updating files: 95% (17406/18322)
Updating files: 96% (17590/18322)
Updating files: 97% (17773/18322)
Updating files: 98% (17956/18322)
Updating files: 99% (18139/18322)
Updating files: 100% (18322/18322)
Updating files: 100% (18322/18322), done.
HEAD is now at e5f44b75d9 Merge pull request #29458 from dinosaure/release-vif-v0.0.1_beta2
Merge made by the 'ort' strategy.
packages/conf-zlib/conf-zlib.1/opam | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
(from ocaml/opam:debian-13-ocaml-4.14@sha256:04864ce35c9a53a8f91e1b6ddfe19ff405f2881ec1201cdca698239b3b811633)
2026-02-27 03:08.21 ---> using "d6079ab6cce1b58b34ac9b5ed11aa86b7980ab728c75f5a6ba9271e98dc1ac1c" 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-02-27 03:08.21 ---> using "3c00c47f9d923b8bd6ffb2b949e4b9efd562ec1af5385aec1656ef10f01c4450" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-02-27 03:08.21 ---> using "a92b73fe3956045426c13ac4a0686c952a1f3abe3c88ddfc7b2f3a6ed1e46736" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-02-27 03:08.21 ---> using "cae9d187aa902d60c82d0c2150bbd9c0de1870c923aa0b0063ad5a25247acae5" 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-02-27 03:08.21 ---> using "feb31a4f8ccbcfb9943e7338a457db5bc00688ce26b7db5634b111626cd4af24" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-02-27 03:08.23 ---> using "218dc454a30b7ab4404235db8c8fdb1f5422091dcaf54e0b4d4c2167f9e06097" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-02-27 03:08.23 ---> using "61576cb25f4b1f74a3a66394571bc64e478163c1e334ae43ae4cbd84e7d35da7" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (1408 kB/s)
- Reading package lists...
-
2026-02-27 03:08.23 ---> using "f9dbcae3c4d74eb0b927dae4c55293566c19eca2857d90411920e649cc5a13db" from cache
/home/opam: (run (shell "opam pin add -k version -yn conf-zlib.1 1"))
conf-zlib is now pinned to version 1
2026-02-27 03:08.23 ---> using "b3dc7723b35baee5e68f26c58db70bf95a6915aac55a46a8934396bddb440e1c" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall conf-zlib.1;\
\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\" != 'conf-zlib.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
conf-zlib.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install conf-pkg-config 4 [required by conf-zlib]
- install conf-zlib 1 (pinned)
The following system packages will first need to be installed:
pkg-config zlib1g-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "pkg-config" "zlib1g-dev"
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> installed conf-pkg-config.4
-> installed conf-zlib.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:08.23 ---> using "065ee5357a4c3a6c6980a96c59bf7001822fe192a1af5dc7d4896c22789bc061" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall javalib.3.0;\
\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\" != 'javalib.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
javalib.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 10 packages
- install camlp4 4.14+1 [required by javalib]
- install camlzip 1.14 [required by javalib]
- install camomile 1.0.2 [required by javalib]
- install conf-which 1 [required by javalib]
- install cppo 1.8.0 [required by extlib]
- install dune 3.21.1 [required by camomile, extlib]
- install extlib 1.8.0 [required by javalib]
- install javalib 3.0
- install ocamlbuild 0.16.1 [required by camlp4]
- install ocamlfind 1.9.8 [required by javalib]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlp4.4.14+1 (cached)
-> retrieved camlzip.1.14 (cached)
-> retrieved camomile.1.0.2 (cached)
-> retrieved cppo.1.8.0 (cached)
-> installed conf-which.1
-> retrieved dune.3.21.1 (cached)
-> retrieved extlib.1.8.0 (cached)
-> retrieved javalib.3.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed ocamlfind.1.9.8
-> installed camlzip.1.14
-> installed ocamlbuild.0.16.1
-> installed dune.3.21.1
-> installed cppo.1.8.0
-> installed extlib.1.8.0
-> installed camomile.1.0.2
-> installed camlp4.4.14+1
-> installed javalib.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:11.46 ---> saved as "aef6ac17bbdc7c223c7955bc8fb6dc66041bd1d9dfcdb6b8abfe9b509e127401"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test javalib.3.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile javalib 3.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved javalib.3.0 (https://opam.ocaml.org/cache)
-> removed javalib.3.0
-> installed javalib.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:12.23 ---> saved as "bdd4b7f6e0133593263087964c55eb4f49396ed5bd097595c8a443c1e4d1b782"
/home/opam: (run (shell "opam reinstall --with-test --verbose javalib.3.0;\
\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\" != 'javalib.3.0' && 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 javalib 3.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [javalib.3.0: extract]
-> retrieved javalib.3.0 (cached)
Processing 2/4: [javalib: ./configure.sh]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure.sh" (CWD=/home/opam/.opam/4.14/.opam-switch/build/javalib.3.0)
- * Debug flag set to yes.
- * Ocamlfind found at /home/opam/.opam/4.14/bin/ocamlfind.
- * System-wide installation, in /home/opam/.opam/4.14/lib.
- * Package zip v1.14 found at /home/opam/.opam/4.14/lib/zip.
- * Package unix found at /home/opam/.opam/4.14/lib/ocaml.
- * Package str found at /home/opam/.opam/4.14/lib/ocaml.
- * Package camlp4 found at /home/opam/.opam/4.14/lib/ocaml/camlp4.
- * Package extlib found at /home/opam/.opam/4.14/lib/extlib.
- * Package camomile found at /home/opam/.opam/4.14/lib/camomile.
- * Writing /home/opam/.opam/4.14/.opam-switch/build/javalib.3.0/Makefile.config.
- Creating from /home/opam/.opam/4.14/.opam-switch/build/javalib.3.0/Makefile.config.example.
- ... done.
- * Writing /home/opam/.opam/4.14/.opam-switch/build/javalib.3.0/src/META.
- Creating from /home/opam/.opam/4.14/.opam-switch/build/javalib.3.0/src/META.source.
- .. done.
-
- WHAT'S NEXT: all dependencies are satisfied.
- A version of Javalib is already installed.
- Compile, remove and install Javalib with the following commands:
- make && sudo make remove install
-
- More details can be found in the installation documentation (INSTALL or http://javalib.gforge.inria.fr/javalib-doc.html).
Processing 2/4: [javalib: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/javalib.3.0)
- make -C src
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/javalib.3.0/src'
- ocamllex jManifest.mll
- 13 states, 340 transitions, table size 1438 bytes
- /home/opam/.opam/4.14/bin/ocamlfind ocamldep -package camlp4 -syntax camlp4o -I ptrees ../Makefile.config ptrees/ptset.mli ptrees/ptmap.mli ptrees/genericSet.mli ptrees/genericMap.mli jLib.mli jBasics.mli jBasicsLow.mli jSignature.mli jCode.mli jClassLow.mli jClass.mli jDumpBasics.mli jUnparseSignature.mli jDumpLow.mli jParseCode.mli jInstruction.mli jUnparse.mli jParseSignature.mli jParse.mli jLow2High.mli jHigh2Low.mli jFile.mli jManifest.mli javalib.mli ptrees/ptset.ml ptrees/ptmap.ml ptrees/genericSet.ml ptrees/genericMap.ml jLib.ml jBasics.ml jBasicsLow.ml jSignature.ml jCode.ml jClass.ml jDumpBasics.ml jParseCode.ml jInstruction.ml jUnparseSignature.ml jDumpLow.ml jHigh2Low.ml jUnparse.ml jParseSignature.ml jLow2High.ml jParse.ml jFile.ml jManifest.ml jPrint.ml javalib.ml > .depend
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c ptrees/ptset.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c ptrees/ptmap.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c ptrees/genericSet.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c ptrees/genericMap.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jLib.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jBasics.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jSignature.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jClass.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jBasicsLow.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jCode.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jClassLow.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jDumpBasics.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jUnparseSignature.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jDumpLow.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jParseCode.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jInstruction.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jUnparse.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jParseSignature.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jParse.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jLow2High.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jHigh2Low.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jFile.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jManifest.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c javalib.mli
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c ptrees/ptset.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "ptrees/ptset.ml", line 338, characters 12-30:
- 338 | List.sort Pervasives.compare (elements_aux [] s)
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "ptrees/ptset.ml", line 602, characters 14-32:
- 602 | List.sort Pervasives.compare (elements_aux [] s)
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c ptrees/ptmap.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c ptrees/genericSet.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c ptrees/genericMap.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jLib.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jBasics.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jBasicsLow.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jSignature.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jCode.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jClass.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jDumpBasics.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jParseCode.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jInstruction.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jUnparseSignature.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jDumpLow.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jHigh2Low.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jUnparse.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -package camlp4 -syntax camlp4o -c jParseSignature.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "jParseSignature.ml", line 29, characters 4-15:
- 29 | Stream.from
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 40-46, characters 19-42:
- 40 | ...................parser
- 41 | | [< 'c when c <> JLib.UChar.of_char ';' (* should be a letter or a number *)
- 42 | && c <> JLib.UChar.of_char '/'
- 43 | && c <> JLib.UChar.of_char ':'
- 44 | && c <> JLib.UChar.of_char '.'
- 45 | && c <> JLib.UChar.of_char '>'
- 46 | && c <> JLib.UChar.of_char '<' >] -> c
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 40-46, characters 19-42:
- 40 | ...................parser
- 41 | | [< 'c when c <> JLib.UChar.of_char ';' (* should be a letter or a number *)
- 42 | && c <> JLib.UChar.of_char '/'
- 43 | && c <> JLib.UChar.of_char ':'
- 44 | && c <> JLib.UChar.of_char '.'
- 45 | && c <> JLib.UChar.of_char '>'
- 46 | && c <> JLib.UChar.of_char '<' >] -> c
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 41-46, characters 9-34:
- 41 | .........'c when c <> JLib.UChar.of_char ';' (* should be a letter or a number *)
- 42 | && c <> JLib.UChar.of_char '/'
- 43 | && c <> JLib.UChar.of_char ':'
- 44 | && c <> JLib.UChar.of_char '.'
- 45 | && c <> JLib.UChar.of_char '>'
- 46 | && c <> JLib.UChar.of_char '<'........
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 40-46, characters 19-42:
- 40 | ...................parser
- 41 | | [< 'c when c <> JLib.UChar.of_char ';' (* should be a letter or a number *)
- 42 | && c <> JLib.UChar.of_char '/'
- 43 | && c <> JLib.UChar.of_char ':'
- 44 | && c <> JLib.UChar.of_char '.'
- 45 | && c <> JLib.UChar.of_char '>'
- 46 | && c <> JLib.UChar.of_char '<' >] -> c
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 48-55, characters 34-28:
- 48 | ..................................parser
- 49 | (* TODO : it seems to be relatively inefficient *)
- 50 | | [< c = parse_char;
- 51 | name =
- 52 | (JLib.UTF8.Buf.add_char buff c;
- 53 | parse_more_ident buff) >] -> name
- 54 | | [< >] ->
- 55 | JLib.UTF8.Buf.contents buff
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 50, characters 9-23:
- 50 | | [< c = parse_char;
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 51-53, characters 2-26:
- 51 | ..name =
- 52 | (JLib.UTF8.Buf.add_char buff c;
- 53 | parse_more_ident buff)...........
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 48-55, characters 34-28:
- 48 | ..................................parser
- 49 | (* TODO : it seems to be relatively inefficient *)
- 50 | | [< c = parse_char;
- 51 | name =
- 52 | (JLib.UTF8.Buf.add_char buff c;
- 53 | parse_more_ident buff) >] -> name
- 54 | | [< >] ->
- 55 | JLib.UTF8.Buf.contents buff
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 57-61, characters 4-39:
- 57 | ....parser
- 58 | | [< c = parse_char; (* should be a letter *)
- 59 | name =
- 60 | (JLib.UTF8.Buf.add_char buff c;
- 61 | parse_more_ident buff) >] -> name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 59-61, characters 4-28:
- 59 | ....name =
- 60 | (JLib.UTF8.Buf.add_char buff c;
- 61 | parse_more_ident buff)...........
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 57-61, characters 4-39:
- 57 | ....parser
- 58 | | [< c = parse_char; (* should be a letter *)
- 59 | name =
- 60 | (JLib.UTF8.Buf.add_char buff c;
- 61 | parse_more_ident buff) >] -> name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 65-67, characters 21-49:
- 65 | .....................parser
- 66 | | [< ident = parse_ident (JLib.UTF8.Buf.create 0);
- 67 | name = parse_more_name >] -> ident :: name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 67, characters 7-29:
- 67 | name = parse_more_name >] -> ident :: name
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 65-67, characters 21-49:
- 65 | .....................parser
- 66 | | [< ident = parse_ident (JLib.UTF8.Buf.create 0);
- 67 | name = parse_more_name >] -> ident :: name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 69-72, characters 22-15:
- 69 | ......................parser
- 70 | | [< 'slash when slash = JLib.UChar.of_char '/';
- 71 | name = parse_name >] -> name
- 72 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 69-72, characters 22-15:
- 69 | ......................parser
- 70 | | [< 'slash when slash = JLib.UChar.of_char '/';
- 71 | name = parse_name >] -> name
- 72 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 70, characters 7-49:
- 70 | | [< 'slash when slash = JLib.UChar.of_char '/';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 71, characters 7-24:
- 71 | name = parse_name >] -> name
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 70, characters 7-49:
- 70 | | [< 'slash when slash = JLib.UChar.of_char '/';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 77-85, characters 22-53:
- 77 | ......................parser
- 78 | | [< 'b when b = JLib.UChar.of_char 'B' >] -> `Byte
- 79 | | [< 'c when c = JLib.UChar.of_char 'C' >] -> `Char
- 80 | | [< 'd when d = JLib.UChar.of_char 'D' >] -> `Double
- 81 | | [< 'f when f = JLib.UChar.of_char 'F' >] -> `Float
- 82 | | [< 'i when i = JLib.UChar.of_char 'I' >] -> `Int
- 83 | | [< 'j when j = JLib.UChar.of_char 'J' >] -> `Long
- 84 | | [< 's when s = JLib.UChar.of_char 'S' >] -> `Short
- 85 | | [< 'z when z = JLib.UChar.of_char 'Z' >] -> `Bool
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 77-85, characters 22-53:
- 77 | ......................parser
- 78 | | [< 'b when b = JLib.UChar.of_char 'B' >] -> `Byte
- 79 | | [< 'c when c = JLib.UChar.of_char 'C' >] -> `Char
- 80 | | [< 'd when d = JLib.UChar.of_char 'D' >] -> `Double
- 81 | | [< 'f when f = JLib.UChar.of_char 'F' >] -> `Float
- 82 | | [< 'i when i = JLib.UChar.of_char 'I' >] -> `Int
- 83 | | [< 'j when j = JLib.UChar.of_char 'J' >] -> `Long
- 84 | | [< 's when s = JLib.UChar.of_char 'S' >] -> `Short
- 85 | | [< 'z when z = JLib.UChar.of_char 'Z' >] -> `Bool
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 78, characters 7-41:
- 78 | | [< 'b when b = JLib.UChar.of_char 'B' >] -> `Byte
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 79, characters 7-41:
- 79 | | [< 'c when c = JLib.UChar.of_char 'C' >] -> `Char
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 80, characters 7-41:
- 80 | | [< 'd when d = JLib.UChar.of_char 'D' >] -> `Double
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 81, characters 7-41:
- 81 | | [< 'f when f = JLib.UChar.of_char 'F' >] -> `Float
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 82, characters 7-41:
- 82 | | [< 'i when i = JLib.UChar.of_char 'I' >] -> `Int
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 83, characters 7-41:
- 83 | | [< 'j when j = JLib.UChar.of_char 'J' >] -> `Long
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 84, characters 7-41:
- 84 | | [< 's when s = JLib.UChar.of_char 'S' >] -> `Short
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 85, characters 7-41:
- 85 | | [< 'z when z = JLib.UChar.of_char 'Z' >] -> `Bool
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 77-85, characters 22-53:
- 77 | ......................parser
- 78 | | [< 'b when b = JLib.UChar.of_char 'B' >] -> `Byte
- 79 | | [< 'c when c = JLib.UChar.of_char 'C' >] -> `Char
- 80 | | [< 'd when d = JLib.UChar.of_char 'D' >] -> `Double
- 81 | | [< 'f when f = JLib.UChar.of_char 'F' >] -> `Float
- 82 | | [< 'i when i = JLib.UChar.of_char 'I' >] -> `Int
- 83 | | [< 'j when j = JLib.UChar.of_char 'J' >] -> `Long
- 84 | | [< 's when s = JLib.UChar.of_char 'S' >] -> `Short
- 85 | | [< 'z when z = JLib.UChar.of_char 'Z' >] -> `Bool
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 87-91, characters 28-30:
- 87 | ............................parser
- 88 | | [< 'l when l = JLib.UChar.of_char 'L';
- 89 | name = get_name;
- 90 | 'semicolon when semicolon = JLib.UChar.of_char ';' >] -> TClass name
- 91 | | [< a = parse_array >] -> a
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 87-91, characters 28-30:
- 87 | ............................parser
- 88 | | [< 'l when l = JLib.UChar.of_char 'L';
- 89 | name = get_name;
- 90 | 'semicolon when semicolon = JLib.UChar.of_char ';' >] -> TClass name
- 91 | | [< a = parse_array >] -> a
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 88, characters 7-41:
- 88 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 89, characters 7-22:
- 89 | name = get_name;
- ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 88, characters 7-41:
- 88 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 90, characters 7-57:
- 90 | 'semicolon when semicolon = JLib.UChar.of_char ';' >] -> TClass name
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 90, characters 7-57:
- 90 | 'semicolon when semicolon = JLib.UChar.of_char ';' >] -> TClass name
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 88, characters 7-41:
- 88 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 93-95, characters 18-16:
- 93 | ..................parser
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- 95 | TArray typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 93-95, characters 18-16:
- 93 | ..................parser
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- 95 | TArray typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 94, characters 7-55:
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 94, characters 57-73:
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 94, characters 7-55:
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 93-95, characters 18-16:
- 93 | ..................parser
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- 95 | TArray typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 97-99, characters 17-44:
- 97 | .................parser
- 98 | | [< b = parse_base_type >] -> TBasic b
- 99 | | [< o = parse_object_type >] -> TObject o
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 98, characters 7-26:
- 98 | | [< b = parse_base_type >] -> TBasic b
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 101-103, characters 22-15:
- 101 | ......................parser
- 102 | | [< typ = parse_type ; types = parse_types >] -> typ :: types
- 103 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 102, characters 7-23:
- 102 | | [< typ = parse_type ; types = parse_types >] -> typ :: types
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 102, characters 26-45:
- 102 | | [< typ = parse_type ; types = parse_types >] -> typ :: types
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 101-103, characters 22-15:
- 101 | ......................parser
- 102 | | [< typ = parse_type ; types = parse_types >] -> typ :: types
- 103 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 105-107, characters 24-17:
- 105 | ........................parser
- 106 | | [< typ = parse_type >] -> Some typ
- 107 | | [< >] -> None
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 106, characters 7-23:
- 106 | | [< typ = parse_type >] -> Some typ
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 110-112, characters 15-40:
- 110 | ...............parser
- 111 | | [< array = parse_array >] -> array
- 112 | | [< name = get_name >] -> TClass name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 111, characters 7-26:
- 111 | | [< array = parse_array >] -> array
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 114-119, characters 23-25:
- 114 | .......................parser
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- 116 | types = parse_types;
- 117 | 'rpar when rpar = JLib.UChar.of_char ')';
- 118 | typ = parse_type_option >] ->
- 119 | make_md (types, typ)
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 114-119, characters 23-25:
- 114 | .......................parser
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- 116 | types = parse_types;
- 117 | 'rpar when rpar = JLib.UChar.of_char ')';
- 118 | typ = parse_type_option >] ->
- 119 | make_md (types, typ)
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 115, characters 7-47:
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 116, characters 7-26:
- 116 | types = parse_types;
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 115, characters 7-47:
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 117, characters 7-47:
- 117 | 'rpar when rpar = JLib.UChar.of_char ')';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 117, characters 7-47:
- 117 | 'rpar when rpar = JLib.UChar.of_char ')';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 118, characters 7-30:
- 118 | typ = parse_type_option >] ->
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 115, characters 7-47:
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 115, characters 7-47:
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 114-119, characters 23-25:
- 114 | .......................parser
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- 116 | types = parse_types;
- 117 | 'rpar when rpar = JLib.UChar.of_char ')';
- 118 | typ = parse_type_option >] ->
- 119 | make_md (types, typ)
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 122-125, characters 16-49:
- 122 | ................parser
- 123 | (* We cannot delete that because of "NameAndType" constants. *)
- 124 | | [< typ = parse_type >] -> SValue typ
- 125 | | [< sign = parse_method_sig >] -> SMethod sign
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 124, characters 7-23:
- 124 | | [< typ = parse_type >] -> SValue typ
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 131, characters 6-20:
- 131 | Stream.Failure -> raise (Class_structure_error ("Illegal object type: " ^ s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 137, characters 6-20:
- 137 | Stream.Failure -> raise (Class_structure_error ("Illegal type: " ^ s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 143, characters 6-20:
- 143 | Stream.Failure -> raise (Class_structure_error ("Illegal method signature: " ^ s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 149, characters 6-20:
- 149 | Stream.Failure -> raise (Class_structure_error ("Illegal signature: " ^ s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 157, characters 27-35:
- 157 | type stream = JLib.UChar.t Stream.t
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 159-162, characters 59-80:
- 159 | ...........................................................parser
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- 161 | name = parse_ident (JLib.UTF8.Buf.create 0);
- 162 | 'semicolon when semicolon = JLib.UChar.of_char ';'>] -> TypeVariable name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 159-162, characters 59-80:
- 159 | ...........................................................parser
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- 161 | name = parse_ident (JLib.UTF8.Buf.create 0);
- 162 | 'semicolon when semicolon = JLib.UChar.of_char ';'>] -> TypeVariable name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 160, characters 7-41:
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 161, characters 7-50:
- 161 | name = parse_ident (JLib.UTF8.Buf.create 0);
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 160, characters 7-41:
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 162, characters 7-57:
- 162 | 'semicolon when semicolon = JLib.UChar.of_char ';'>] -> TypeVariable name
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 162, characters 7-57:
- 162 | 'semicolon when semicolon = JLib.UChar.of_char ';'>] -> TypeVariable name
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 160, characters 7-41:
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 159-162, characters 59-80:
- 159 | ...........................................................parser
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- 161 | name = parse_ident (JLib.UTF8.Buf.create 0);
- 162 | 'semicolon when semicolon = JLib.UChar.of_char ';'>] -> TypeVariable name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 167-175, characters 27-22:
- 167 | ...........................parser
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- 169 | -> ArgumentExtends typ
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- 171 | -> ArgumentInherits typ
- 172 | | [< typ = parse_FieldTypeSignature >]
- 173 | -> ArgumentIs typ
- 174 | | [< 'star when star = JLib.UChar.of_char '*' >]
- 175 | -> ArgumentIsAny
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 167-175, characters 27-22:
- 167 | ...........................parser
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- 169 | -> ArgumentExtends typ
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- 171 | -> ArgumentInherits typ
- 172 | | [< typ = parse_FieldTypeSignature >]
- 173 | -> ArgumentIs typ
- 174 | | [< 'star when star = JLib.UChar.of_char '*' >]
- 175 | -> ArgumentIsAny
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 168, characters 9-49:
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 168, characters 51-81:
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 168, characters 9-49:
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 170, characters 9-51:
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 170, characters 53-83:
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 170, characters 9-51:
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 172, characters 9-39:
- 172 | | [< typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 167-175, characters 27-22:
- 167 | ...........................parser
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- 169 | -> ArgumentExtends typ
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- 171 | -> ArgumentInherits typ
- 172 | | [< typ = parse_FieldTypeSignature >]
- 173 | -> ArgumentIs typ
- 174 | | [< 'star when star = JLib.UChar.of_char '*' >]
- 175 | -> ArgumentIsAny
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 174, characters 9-49:
- 174 | | [< 'star when star = JLib.UChar.of_char '*' >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 167-175, characters 27-22:
- 167 | ...........................parser
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- 169 | -> ArgumentExtends typ
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- 171 | -> ArgumentInherits typ
- 172 | | [< typ = parse_FieldTypeSignature >]
- 173 | -> ArgumentIs typ
- 174 | | [< 'star when star = JLib.UChar.of_char '*' >]
- 175 | -> ArgumentIsAny
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 177-179, characters 23-17:
- 177 | .......................parser
- 178 | | [< typ = parse_TypeArgument; other = parse_more >] -> typ::other
- 179 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 178, characters 9-33:
- 178 | | [< typ = parse_TypeArgument; other = parse_more >] -> typ::other
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 178, characters 35-53:
- 178 | | [< typ = parse_TypeArgument; other = parse_more >] -> typ::other
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 177-179, characters 23-17:
- 177 | .......................parser
- 178 | | [< typ = parse_TypeArgument; other = parse_more >] -> typ::other
- 179 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 181-186, characters 4-19:
- 181 | ....parser
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- 183 | typ = parse_TypeArgument;
- 184 | other = parse_more;
- 185 | 'gt when gt = JLib.UChar.of_char '>' >] -> typ::other
- 186 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 181-186, characters 4-19:
- 181 | ....parser
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- 183 | typ = parse_TypeArgument;
- 184 | other = parse_more;
- 185 | 'gt when gt = JLib.UChar.of_char '>' >] -> typ::other
- 186 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 182, characters 11-47:
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 183, characters 4-28:
- 183 | typ = parse_TypeArgument;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 182, characters 11-47:
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 184, characters 4-22:
- 184 | other = parse_more;
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 182, characters 11-47:
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 185, characters 4-40:
- 185 | 'gt when gt = JLib.UChar.of_char '>' >] -> typ::other
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 185, characters 4-40:
- 185 | 'gt when gt = JLib.UChar.of_char '>' >] -> typ::other
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 182, characters 11-47:
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 189-191, characters 57-42:
- 189 | .........................................................parser
- 190 | | [< 'lb when lb = JLib.UChar.of_char '[';
- 191 | typ = parse_TypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 189-191, characters 57-42:
- 189 | .........................................................parser
- 190 | | [< 'lb when lb = JLib.UChar.of_char '[';
- 191 | typ = parse_TypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 190, characters 7-43:
- 190 | | [< 'lb when lb = JLib.UChar.of_char '[';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 191, characters 7-32:
- 191 | typ = parse_TypeSignature >] -> typ
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 190, characters 7-43:
- 190 | | [< 'lb when lb = JLib.UChar.of_char '[';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 189-191, characters 57-42:
- 189 | .........................................................parser
- 190 | | [< 'lb when lb = JLib.UChar.of_char '[';
- 191 | typ = parse_TypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 193-195, characters 52-43:
- 193 | ....................................................parser
- 194 | | [< ot = parse_FieldTypeSignature >] -> GObject ot
- 195 | | [< bt = parse_base_type >] -> GBasic bt
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 194, characters 7-36:
- 194 | | [< ot = parse_FieldTypeSignature >] -> GObject ot
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 198-200, characters 74-60:
- 198 | ..........................................................................parser
- 199 | | [< ident = parse_ident (JLib.UTF8.Buf.create 0); arguments = parse_TypeArguments >]
- 200 | -> {scts_name = ident; scts_type_arguments = arguments;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 199, characters 53-84:
- 199 | | [< ident = parse_ident (JLib.UTF8.Buf.create 0); arguments = parse_TypeArguments >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 198-200, characters 74-60:
- 198 | ..........................................................................parser
- 199 | | [< ident = parse_ident (JLib.UTF8.Buf.create 0); arguments = parse_TypeArguments >]
- 200 | -> {scts_name = ident; scts_type_arguments = arguments;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 203-205, characters 39-11:
- 203 | .......................................parser
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- 205 | -> ct
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 203-205, characters 39-11:
- 203 | .......................................parser
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- 205 | -> ct
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 204, characters 9-47:
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 204, characters 49-84:
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 204, characters 9-47:
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 203-205, characters 39-11:
- 203 | .......................................parser
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- 205 | -> ct
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 206-209, characters 5-17:
- 206 | .....parser
- 207 | | [< ct = parse_ClassTypeSignatureSuffix ; others = parse_ClassTypeSignatureSuffixes >]
- 208 | -> ct::others
- 209 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 207, characters 9-44:
- 207 | | [< ct = parse_ClassTypeSignatureSuffix ; others = parse_ClassTypeSignatureSuffixes >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 207, characters 47-88:
- 207 | | [< ct = parse_ClassTypeSignatureSuffix ; others = parse_ClassTypeSignatureSuffixes >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 206-209, characters 5-17:
- 206 | .....parser
- 207 | | [< ct = parse_ClassTypeSignatureSuffix ; others = parse_ClassTypeSignatureSuffixes >]
- 208 | -> ct::others
- 209 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 211-227, characters 62-52:
- 211 | ..............................................................parser
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- 213 | qualified_name = parse_QualifiedName;
- 214 | args = parse_TypeArguments;
- 215 | cts = parse_ClassTypeSignatureSuffixes;
- ...
- 224 | in {
- 225 | cts_package = package;
- 226 | cts_enclosing_classes = enclosing_classes;
- 227 | cts_simple_class_type_signature = current_class;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 211-227, characters 62-52:
- 211 | ..............................................................parser
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- 213 | qualified_name = parse_QualifiedName;
- 214 | args = parse_TypeArguments;
- 215 | cts = parse_ClassTypeSignatureSuffixes;
- ...
- 224 | in {
- 225 | cts_package = package;
- 226 | cts_enclosing_classes = enclosing_classes;
- 227 | cts_simple_class_type_signature = current_class;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 212, characters 7-41:
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 213, characters 7-43:
- 213 | qualified_name = parse_QualifiedName;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 212, characters 7-41:
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 214, characters 7-33:
- 214 | args = parse_TypeArguments;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 212, characters 7-41:
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 215, characters 7-45:
- 215 | cts = parse_ClassTypeSignatureSuffixes;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 212, characters 7-41:
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 216, characters 7-57:
- 216 | 'semicolon when semicolon = JLib.UChar.of_char ';' >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 216, characters 7-57:
- 216 | 'semicolon when semicolon = JLib.UChar.of_char ';' >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 212, characters 7-41:
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 211-227, characters 62-52:
- 211 | ..............................................................parser
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- 213 | qualified_name = parse_QualifiedName;
- 214 | args = parse_TypeArguments;
- 215 | cts = parse_ClassTypeSignatureSuffixes;
- ...
- 224 | in {
- 225 | cts_package = package;
- 226 | cts_enclosing_classes = enclosing_classes;
- 227 | cts_simple_class_type_signature = current_class;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 229-232, characters 62-58:
- 229 | ..............................................................parser
- 230 | | [< ct = parse_ClassTypeSignature >] -> GClass ct
- 231 | | [< at = parse_ArrayTypeSignature >] -> GArray at
- 232 | | [< tv = parse_TypeVariableSignature >] -> GVariable tv
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 230, characters 7-36:
- 230 | | [< ct = parse_ClassTypeSignature >] -> GClass ct
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 231, characters 7-36:
- 231 | | [< at = parse_ArrayTypeSignature >] -> GArray at
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 234-238, characters 61-31:
- 234 | .............................................................parser
- 235 | | [< 'colon when colon= JLib.UChar.of_char ':';
- 236 | e = (parser
- 237 | | [< typ = parse_FieldTypeSignature >] -> Some typ
- 238 | | [< >] -> None) >] -> e
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 234-238, characters 61-31:
- 234 | .............................................................parser
- 235 | | [< 'colon when colon= JLib.UChar.of_char ':';
- 236 | e = (parser
- 237 | | [< typ = parse_FieldTypeSignature >] -> Some typ
- 238 | | [< >] -> None) >] -> e
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 235, characters 7-48:
- 235 | | [< 'colon when colon= JLib.UChar.of_char ':';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 237, characters 12-42:
- 237 | | [< typ = parse_FieldTypeSignature >] -> Some typ
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 234-238, characters 61-31:
- 234 | .............................................................parser
- 235 | | [< 'colon when colon= JLib.UChar.of_char ':';
- 236 | e = (parser
- 237 | | [< typ = parse_FieldTypeSignature >] -> Some typ
- 238 | | [< >] -> None) >] -> e
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 242-243, characters 29-92:
- 242 | .............................parser
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 242-243, characters 29-92:
- 242 | .............................parser
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 243, characters 9-50:
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 243, characters 52-82:
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 243, characters 9-50:
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 242-243, characters 29-92:
- 242 | .............................parser
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 244-246, characters 5-17:
- 244 | .....parser
- 245 | | [< ib = parse_InterfaceBound; others = parse_InterfaceBounds >] -> ib::others
- 246 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 245, characters 9-34:
- 245 | | [< ib = parse_InterfaceBound; others = parse_InterfaceBounds >] -> ib::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 245, characters 36-66:
- 245 | | [< ib = parse_InterfaceBound; others = parse_InterfaceBounds >] -> ib::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 244-246, characters 5-17:
- 244 | .....parser
- 245 | | [< ib = parse_InterfaceBound; others = parse_InterfaceBounds >] -> ib::others
- 246 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 250-252, characters 66-76:
- 250 | ..................................................................parser
- 251 | | [< name = parse_ident (JLib.UTF8.Buf.create 0); cb = parse_ClassBound; ib = parse_InterfaceBounds >]
- 252 | -> {ftp_name = name; ftp_class_bound = cb; ftp_interface_bounds = ib;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 251, characters 54-75:
- 251 | | [< name = parse_ident (JLib.UTF8.Buf.create 0); cb = parse_ClassBound; ib = parse_InterfaceBounds >]
- ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 250-252, characters 66-76:
- 250 | ..................................................................parser
- 251 | | [< name = parse_ident (JLib.UTF8.Buf.create 0); cb = parse_ClassBound; ib = parse_InterfaceBounds >]
- 252 | -> {ftp_name = name; ftp_class_bound = cb; ftp_interface_bounds = ib;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 251, characters 77-103:
- 251 | | [< name = parse_ident (JLib.UTF8.Buf.create 0); cb = parse_ClassBound; ib = parse_InterfaceBounds >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 250-252, characters 66-76:
- 250 | ..................................................................parser
- 251 | | [< name = parse_ident (JLib.UTF8.Buf.create 0); cb = parse_ClassBound; ib = parse_InterfaceBounds >]
- 252 | -> {ftp_name = name; ftp_class_bound = cb; ftp_interface_bounds = ib;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 254-256, characters 23-17:
- 254 | .......................parser
- 255 | | [< typ = parse_FormalTypeParameter ; others = parse_more >] -> typ::others
- 256 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 255, characters 9-40:
- 255 | | [< typ = parse_FormalTypeParameter ; others = parse_more >] -> typ::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 255, characters 43-62:
- 255 | | [< typ = parse_FormalTypeParameter ; others = parse_more >] -> typ::others
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 254-256, characters 23-17:
- 254 | .......................parser
- 255 | | [< typ = parse_FormalTypeParameter ; others = parse_more >] -> typ::others
- 256 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 257-263, characters 5-17:
- 257 | .....parser
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- 259 | typ = parse_FormalTypeParameter;
- 260 | others = parse_more;
- 261 | 'gt when gt = JLib.UChar.of_char '>' >]
- 262 | -> typ::others
- 263 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 257-263, characters 5-17:
- 257 | .....parser
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- 259 | typ = parse_FormalTypeParameter;
- 260 | others = parse_more;
- 261 | 'gt when gt = JLib.UChar.of_char '>' >]
- 262 | -> typ::others
- 263 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 258, characters 9-45:
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 259, characters 2-33:
- 259 | typ = parse_FormalTypeParameter;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 258, characters 9-45:
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 260, characters 2-21:
- 260 | others = parse_more;
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 258, characters 9-45:
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 261, characters 2-38:
- 261 | 'gt when gt = JLib.UChar.of_char '>' >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 261, characters 2-38:
- 261 | 'gt when gt = JLib.UChar.of_char '>' >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 258, characters 9-45:
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 266-268, characters 77-15:
- 266 | .............................................................................parser
- 267 | | [< sis = parse_ClassTypeSignature; others = parse_SuperinterfaceSignatures >] -> sis::others
- 268 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 267, characters 7-37:
- 267 | | [< sis = parse_ClassTypeSignature; others = parse_SuperinterfaceSignatures >] -> sis::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 267, characters 39-78:
- 267 | | [< sis = parse_ClassTypeSignature; others = parse_SuperinterfaceSignatures >] -> sis::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 266-268, characters 77-15:
- 266 | .............................................................................parser
- 267 | | [< sis = parse_ClassTypeSignature; others = parse_SuperinterfaceSignatures >] -> sis::others
- 268 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 270-276, characters 54-34:
- 270 | ......................................................parser
- 271 | | [< ftp = parse_FormalTypeParameters;
- 272 | scs = parse_SuperclassSignature;
- 273 | sis = parse_SuperinterfaceSignatures >] ->
- 274 | {cs_formal_type_parameters = ftp;
- 275 | cs_super_class = scs;
- 276 | cs_super_interfaces = sis;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 272, characters 7-38:
- 272 | scs = parse_SuperclassSignature;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 270-276, characters 54-34:
- 270 | ......................................................parser
- 271 | | [< ftp = parse_FormalTypeParameters;
- 272 | scs = parse_SuperclassSignature;
- 273 | sis = parse_SuperinterfaceSignatures >] ->
- 274 | {cs_formal_type_parameters = ftp;
- 275 | cs_super_class = scs;
- 276 | cs_super_interfaces = sis;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 273, characters 7-43:
- 273 | sis = parse_SuperinterfaceSignatures >] ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 270-276, characters 54-34:
- 270 | ......................................................parser
- 271 | | [< ftp = parse_FormalTypeParameters;
- 272 | scs = parse_SuperclassSignature;
- 273 | sis = parse_SuperinterfaceSignatures >] ->
- 274 | {cs_formal_type_parameters = ftp;
- 275 | cs_super_class = scs;
- 276 | cs_super_interfaces = sis;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 280-282, characters 58-47:
- 280 | ..........................................................parser
- 281 | | [< 'v when v = JLib.UChar.of_char 'V' >] -> None
- 282 | | [< ts = parse_TypeSignature >] -> Some ts
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 280-282, characters 58-47:
- 280 | ..........................................................parser
- 281 | | [< 'v when v = JLib.UChar.of_char 'V' >] -> None
- 282 | | [< ts = parse_TypeSignature >] -> Some ts
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 281, characters 9-43:
- 281 | | [< 'v when v = JLib.UChar.of_char 'V' >] -> None
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 284-290, characters 67-17:
- 284 | ...................................................................parser
- 285 | | [< 'circ when circ = JLib.UChar.of_char '^';
- 286 | e = (parser
- 287 | | [< cl = parse_ClassTypeSignature >] -> ThrowsClass cl
- 288 | | [< var = parse_TypeVariableSignature >] -> ThrowsTypeVariable var);
- 289 | others = parse_ThrowsSignature >] -> e::others
- 290 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 284-290, characters 67-17:
- 284 | ...................................................................parser
- 285 | | [< 'circ when circ = JLib.UChar.of_char '^';
- 286 | e = (parser
- 287 | | [< cl = parse_ClassTypeSignature >] -> ThrowsClass cl
- 288 | | [< var = parse_TypeVariableSignature >] -> ThrowsTypeVariable var);
- 289 | others = parse_ThrowsSignature >] -> e::others
- 290 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 285, characters 9-49:
- 285 | | [< 'circ when circ = JLib.UChar.of_char '^';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 287, characters 7-36:
- 287 | | [< cl = parse_ClassTypeSignature >] -> ThrowsClass cl
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 286-288, characters 2-70:
- 286 | ..e = (parser
- 287 | | [< cl = parse_ClassTypeSignature >] -> ThrowsClass cl
- 288 | | [< var = parse_TypeVariableSignature >] -> ThrowsTypeVariable var).
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 285, characters 9-49:
- 285 | | [< 'circ when circ = JLib.UChar.of_char '^';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 289, characters 2-32:
- 289 | others = parse_ThrowsSignature >] -> e::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 285, characters 9-49:
- 285 | | [< 'circ when circ = JLib.UChar.of_char '^';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 291-293, characters 60-17:
- 291 | ............................................................parser
- 292 | | [< ts = parse_TypeSignature ; others = parse_TypeSignatures >] -> ts::others
- 293 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 292, characters 9-33:
- 292 | | [< ts = parse_TypeSignature ; others = parse_TypeSignatures >] -> ts::others
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 292, characters 36-65:
- 292 | | [< ts = parse_TypeSignature ; others = parse_TypeSignatures >] -> ts::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 291-293, characters 60-17:
- 291 | ............................................................parser
- 292 | | [< ts = parse_TypeSignature ; others = parse_TypeSignatures >] -> ts::others
- 293 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 296, characters 2-42:
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 296, characters 2-42:
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 297, characters 2-27:
- 297 | ts = parse_TypeSignatures;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 298, characters 2-42:
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 298, characters 2-42:
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 299, characters 2-23:
- 299 | rt = parse_ReturnType;
- ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 300, characters 2-32:
- 300 | throws = parse_ThrowsSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 311, characters 6-18:
- 311 | | Stream.Error _
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 312, characters 6-20:
- 312 | | Stream.Failure -> raise (Class_structure_error ("Ill-formed class Signature attribute: "^s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 319, characters 6-18:
- 319 | | Stream.Error _
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 320, characters 6-20:
- 320 | | Stream.Failure -> raise (Class_structure_error ("Ill-formed method Signature attribute: "^s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 328, characters 6-18:
- 328 | | Stream.Error _
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 329, characters 6-20:
- 329 | | Stream.Failure -> raise (Class_structure_error ("Ill-formed field Signature attribute: "^s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jLow2High.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jParse.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "jParse.ml", line 148, characters 4-24:
- 148 | let parse_stackmap_frame consts ch =
- ^^^^^^^^^^^^^^^^^^^^
- Warning 32 [unused-value-declaration]: unused value parse_stackmap_frame.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jFile.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "jFile.ml", line 123, characters 13-35:
- 123 | let ch = Pervasives.open_in_bin (Filename.concat d c) in
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "jFile.ml", line 159, characters 12-35:
- 159 | let f = Pervasives.open_out_bin (Filename.concat output_dir c) in
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "jFile.ml", line 174, characters 37-59:
- 174 | let input = JLib.IO.input_channel (Pervasives.open_in_bin file) in
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "jFile.ml", line 294, characters 15-37:
- 294 | let ch = Pervasives.open_in_bin c in
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jManifest.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "jManifest.mll", line 72, characters 8-24:
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "jManifest.mll", line 80, characters 14-30:
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c jPrint.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- File "jPrint.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -c javalib.ml
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -I ptrees -pack ptrees/ptset.cmo ptrees/ptmap.cmo ptrees/genericSet.cmo ptrees/genericMap.cmo jLib.cmo jBasics.cmo jBasicsLow.cmo jSignature.cmo jCode.cmo jClass.cmo jDumpBasics.cmo jParseCode.cmo jInstruction.cmo jUnparseSignature.cmo jDumpLow.cmo jHigh2Low.cmo jUnparse.cmo jParseSignature.cmo jLow2High.cmo jParse.cmo jFile.cmo jManifest.cmo jPrint.cmo javalib.cmo -o javalib_pack.cmo
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlc -g -w Aer -annot -package unix,str,extlib,camomile,zip -a -o javalib.cma javalib_pack.cmo
- File "_none_", line 1:
- Alert ocaml_deprecated_cli: Setting a warning with a sequence of lowercase or uppercase letters,
- like 'Aer', is deprecated.
- Use the equivalent signed form: +A-e-r.
- Hint: Enabling or disabling a warning by its mnemonic name requires a + or - prefix.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c ptrees/ptset.ml
- File "ptrees/ptset.ml", line 338, characters 12-30:
- 338 | List.sort Pervasives.compare (elements_aux [] s)
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "ptrees/ptset.ml", line 602, characters 14-32:
- 602 | List.sort Pervasives.compare (elements_aux [] s)
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c ptrees/ptmap.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c ptrees/genericSet.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c ptrees/genericMap.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jLib.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jBasics.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jBasicsLow.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jSignature.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jCode.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jClass.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jDumpBasics.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jParseCode.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jInstruction.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jUnparseSignature.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jDumpLow.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jHigh2Low.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jUnparse.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -package camlp4 -syntax camlp4o -for-pack Javalib_pack -c jParseSignature.ml
- File "jParseSignature.ml", line 29, characters 4-15:
- 29 | Stream.from
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 40-46, characters 19-42:
- 40 | ...................parser
- 41 | | [< 'c when c <> JLib.UChar.of_char ';' (* should be a letter or a number *)
- 42 | && c <> JLib.UChar.of_char '/'
- 43 | && c <> JLib.UChar.of_char ':'
- 44 | && c <> JLib.UChar.of_char '.'
- 45 | && c <> JLib.UChar.of_char '>'
- 46 | && c <> JLib.UChar.of_char '<' >] -> c
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 40-46, characters 19-42:
- 40 | ...................parser
- 41 | | [< 'c when c <> JLib.UChar.of_char ';' (* should be a letter or a number *)
- 42 | && c <> JLib.UChar.of_char '/'
- 43 | && c <> JLib.UChar.of_char ':'
- 44 | && c <> JLib.UChar.of_char '.'
- 45 | && c <> JLib.UChar.of_char '>'
- 46 | && c <> JLib.UChar.of_char '<' >] -> c
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 41-46, characters 9-34:
- 41 | .........'c when c <> JLib.UChar.of_char ';' (* should be a letter or a number *)
- 42 | && c <> JLib.UChar.of_char '/'
- 43 | && c <> JLib.UChar.of_char ':'
- 44 | && c <> JLib.UChar.of_char '.'
- 45 | && c <> JLib.UChar.of_char '>'
- 46 | && c <> JLib.UChar.of_char '<'........
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 40-46, characters 19-42:
- 40 | ...................parser
- 41 | | [< 'c when c <> JLib.UChar.of_char ';' (* should be a letter or a number *)
- 42 | && c <> JLib.UChar.of_char '/'
- 43 | && c <> JLib.UChar.of_char ':'
- 44 | && c <> JLib.UChar.of_char '.'
- 45 | && c <> JLib.UChar.of_char '>'
- 46 | && c <> JLib.UChar.of_char '<' >] -> c
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 48-55, characters 34-28:
- 48 | ..................................parser
- 49 | (* TODO : it seems to be relatively inefficient *)
- 50 | | [< c = parse_char;
- 51 | name =
- 52 | (JLib.UTF8.Buf.add_char buff c;
- 53 | parse_more_ident buff) >] -> name
- 54 | | [< >] ->
- 55 | JLib.UTF8.Buf.contents buff
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 50, characters 9-23:
- 50 | | [< c = parse_char;
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 51-53, characters 2-26:
- 51 | ..name =
- 52 | (JLib.UTF8.Buf.add_char buff c;
- 53 | parse_more_ident buff)...........
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 48-55, characters 34-28:
- 48 | ..................................parser
- 49 | (* TODO : it seems to be relatively inefficient *)
- 50 | | [< c = parse_char;
- 51 | name =
- 52 | (JLib.UTF8.Buf.add_char buff c;
- 53 | parse_more_ident buff) >] -> name
- 54 | | [< >] ->
- 55 | JLib.UTF8.Buf.contents buff
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 57-61, characters 4-39:
- 57 | ....parser
- 58 | | [< c = parse_char; (* should be a letter *)
- 59 | name =
- 60 | (JLib.UTF8.Buf.add_char buff c;
- 61 | parse_more_ident buff) >] -> name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 59-61, characters 4-28:
- 59 | ....name =
- 60 | (JLib.UTF8.Buf.add_char buff c;
- 61 | parse_more_ident buff)...........
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 57-61, characters 4-39:
- 57 | ....parser
- 58 | | [< c = parse_char; (* should be a letter *)
- 59 | name =
- 60 | (JLib.UTF8.Buf.add_char buff c;
- 61 | parse_more_ident buff) >] -> name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 65-67, characters 21-49:
- 65 | .....................parser
- 66 | | [< ident = parse_ident (JLib.UTF8.Buf.create 0);
- 67 | name = parse_more_name >] -> ident :: name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 67, characters 7-29:
- 67 | name = parse_more_name >] -> ident :: name
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 65-67, characters 21-49:
- 65 | .....................parser
- 66 | | [< ident = parse_ident (JLib.UTF8.Buf.create 0);
- 67 | name = parse_more_name >] -> ident :: name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 69-72, characters 22-15:
- 69 | ......................parser
- 70 | | [< 'slash when slash = JLib.UChar.of_char '/';
- 71 | name = parse_name >] -> name
- 72 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 69-72, characters 22-15:
- 69 | ......................parser
- 70 | | [< 'slash when slash = JLib.UChar.of_char '/';
- 71 | name = parse_name >] -> name
- 72 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 70, characters 7-49:
- 70 | | [< 'slash when slash = JLib.UChar.of_char '/';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 71, characters 7-24:
- 71 | name = parse_name >] -> name
- ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 70, characters 7-49:
- 70 | | [< 'slash when slash = JLib.UChar.of_char '/';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 77-85, characters 22-53:
- 77 | ......................parser
- 78 | | [< 'b when b = JLib.UChar.of_char 'B' >] -> `Byte
- 79 | | [< 'c when c = JLib.UChar.of_char 'C' >] -> `Char
- 80 | | [< 'd when d = JLib.UChar.of_char 'D' >] -> `Double
- 81 | | [< 'f when f = JLib.UChar.of_char 'F' >] -> `Float
- 82 | | [< 'i when i = JLib.UChar.of_char 'I' >] -> `Int
- 83 | | [< 'j when j = JLib.UChar.of_char 'J' >] -> `Long
- 84 | | [< 's when s = JLib.UChar.of_char 'S' >] -> `Short
- 85 | | [< 'z when z = JLib.UChar.of_char 'Z' >] -> `Bool
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 77-85, characters 22-53:
- 77 | ......................parser
- 78 | | [< 'b when b = JLib.UChar.of_char 'B' >] -> `Byte
- 79 | | [< 'c when c = JLib.UChar.of_char 'C' >] -> `Char
- 80 | | [< 'd when d = JLib.UChar.of_char 'D' >] -> `Double
- 81 | | [< 'f when f = JLib.UChar.of_char 'F' >] -> `Float
- 82 | | [< 'i when i = JLib.UChar.of_char 'I' >] -> `Int
- 83 | | [< 'j when j = JLib.UChar.of_char 'J' >] -> `Long
- 84 | | [< 's when s = JLib.UChar.of_char 'S' >] -> `Short
- 85 | | [< 'z when z = JLib.UChar.of_char 'Z' >] -> `Bool
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 78, characters 7-41:
- 78 | | [< 'b when b = JLib.UChar.of_char 'B' >] -> `Byte
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 79, characters 7-41:
- 79 | | [< 'c when c = JLib.UChar.of_char 'C' >] -> `Char
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 80, characters 7-41:
- 80 | | [< 'd when d = JLib.UChar.of_char 'D' >] -> `Double
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 81, characters 7-41:
- 81 | | [< 'f when f = JLib.UChar.of_char 'F' >] -> `Float
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 82, characters 7-41:
- 82 | | [< 'i when i = JLib.UChar.of_char 'I' >] -> `Int
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 83, characters 7-41:
- 83 | | [< 'j when j = JLib.UChar.of_char 'J' >] -> `Long
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 84, characters 7-41:
- 84 | | [< 's when s = JLib.UChar.of_char 'S' >] -> `Short
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 85, characters 7-41:
- 85 | | [< 'z when z = JLib.UChar.of_char 'Z' >] -> `Bool
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 77-85, characters 22-53:
- 77 | ......................parser
- 78 | | [< 'b when b = JLib.UChar.of_char 'B' >] -> `Byte
- 79 | | [< 'c when c = JLib.UChar.of_char 'C' >] -> `Char
- 80 | | [< 'd when d = JLib.UChar.of_char 'D' >] -> `Double
- 81 | | [< 'f when f = JLib.UChar.of_char 'F' >] -> `Float
- 82 | | [< 'i when i = JLib.UChar.of_char 'I' >] -> `Int
- 83 | | [< 'j when j = JLib.UChar.of_char 'J' >] -> `Long
- 84 | | [< 's when s = JLib.UChar.of_char 'S' >] -> `Short
- 85 | | [< 'z when z = JLib.UChar.of_char 'Z' >] -> `Bool
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 87-91, characters 28-30:
- 87 | ............................parser
- 88 | | [< 'l when l = JLib.UChar.of_char 'L';
- 89 | name = get_name;
- 90 | 'semicolon when semicolon = JLib.UChar.of_char ';' >] -> TClass name
- 91 | | [< a = parse_array >] -> a
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 87-91, characters 28-30:
- 87 | ............................parser
- 88 | | [< 'l when l = JLib.UChar.of_char 'L';
- 89 | name = get_name;
- 90 | 'semicolon when semicolon = JLib.UChar.of_char ';' >] -> TClass name
- 91 | | [< a = parse_array >] -> a
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 88, characters 7-41:
- 88 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 89, characters 7-22:
- 89 | name = get_name;
- ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 88, characters 7-41:
- 88 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 90, characters 7-57:
- 90 | 'semicolon when semicolon = JLib.UChar.of_char ';' >] -> TClass name
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 90, characters 7-57:
- 90 | 'semicolon when semicolon = JLib.UChar.of_char ';' >] -> TClass name
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 88, characters 7-41:
- 88 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 93-95, characters 18-16:
- 93 | ..................parser
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- 95 | TArray typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 93-95, characters 18-16:
- 93 | ..................parser
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- 95 | TArray typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 94, characters 7-55:
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 94, characters 57-73:
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 94, characters 7-55:
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 93-95, characters 18-16:
- 93 | ..................parser
- 94 | | [< 'lbracket when lbracket = JLib.UChar.of_char '['; typ = parse_type >] ->
- 95 | TArray typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 97-99, characters 17-44:
- 97 | .................parser
- 98 | | [< b = parse_base_type >] -> TBasic b
- 99 | | [< o = parse_object_type >] -> TObject o
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 98, characters 7-26:
- 98 | | [< b = parse_base_type >] -> TBasic b
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 101-103, characters 22-15:
- 101 | ......................parser
- 102 | | [< typ = parse_type ; types = parse_types >] -> typ :: types
- 103 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 102, characters 7-23:
- 102 | | [< typ = parse_type ; types = parse_types >] -> typ :: types
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 102, characters 26-45:
- 102 | | [< typ = parse_type ; types = parse_types >] -> typ :: types
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 101-103, characters 22-15:
- 101 | ......................parser
- 102 | | [< typ = parse_type ; types = parse_types >] -> typ :: types
- 103 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 105-107, characters 24-17:
- 105 | ........................parser
- 106 | | [< typ = parse_type >] -> Some typ
- 107 | | [< >] -> None
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 106, characters 7-23:
- 106 | | [< typ = parse_type >] -> Some typ
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 110-112, characters 15-40:
- 110 | ...............parser
- 111 | | [< array = parse_array >] -> array
- 112 | | [< name = get_name >] -> TClass name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 111, characters 7-26:
- 111 | | [< array = parse_array >] -> array
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 114-119, characters 23-25:
- 114 | .......................parser
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- 116 | types = parse_types;
- 117 | 'rpar when rpar = JLib.UChar.of_char ')';
- 118 | typ = parse_type_option >] ->
- 119 | make_md (types, typ)
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 114-119, characters 23-25:
- 114 | .......................parser
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- 116 | types = parse_types;
- 117 | 'rpar when rpar = JLib.UChar.of_char ')';
- 118 | typ = parse_type_option >] ->
- 119 | make_md (types, typ)
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 115, characters 7-47:
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 116, characters 7-26:
- 116 | types = parse_types;
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 115, characters 7-47:
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 117, characters 7-47:
- 117 | 'rpar when rpar = JLib.UChar.of_char ')';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 117, characters 7-47:
- 117 | 'rpar when rpar = JLib.UChar.of_char ')';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 118, characters 7-30:
- 118 | typ = parse_type_option >] ->
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 115, characters 7-47:
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 115, characters 7-47:
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 114-119, characters 23-25:
- 114 | .......................parser
- 115 | | [< 'lpar when lpar = JLib.UChar.of_char '(';
- 116 | types = parse_types;
- 117 | 'rpar when rpar = JLib.UChar.of_char ')';
- 118 | typ = parse_type_option >] ->
- 119 | make_md (types, typ)
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 122-125, characters 16-49:
- 122 | ................parser
- 123 | (* We cannot delete that because of "NameAndType" constants. *)
- 124 | | [< typ = parse_type >] -> SValue typ
- 125 | | [< sign = parse_method_sig >] -> SMethod sign
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 124, characters 7-23:
- 124 | | [< typ = parse_type >] -> SValue typ
- ^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 131, characters 6-20:
- 131 | Stream.Failure -> raise (Class_structure_error ("Illegal object type: " ^ s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 137, characters 6-20:
- 137 | Stream.Failure -> raise (Class_structure_error ("Illegal type: " ^ s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 143, characters 6-20:
- 143 | Stream.Failure -> raise (Class_structure_error ("Illegal method signature: " ^ s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 149, characters 6-20:
- 149 | Stream.Failure -> raise (Class_structure_error ("Illegal signature: " ^ s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 157, characters 27-35:
- 157 | type stream = JLib.UChar.t Stream.t
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 159-162, characters 59-80:
- 159 | ...........................................................parser
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- 161 | name = parse_ident (JLib.UTF8.Buf.create 0);
- 162 | 'semicolon when semicolon = JLib.UChar.of_char ';'>] -> TypeVariable name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 159-162, characters 59-80:
- 159 | ...........................................................parser
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- 161 | name = parse_ident (JLib.UTF8.Buf.create 0);
- 162 | 'semicolon when semicolon = JLib.UChar.of_char ';'>] -> TypeVariable name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 160, characters 7-41:
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 161, characters 7-50:
- 161 | name = parse_ident (JLib.UTF8.Buf.create 0);
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 160, characters 7-41:
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 162, characters 7-57:
- 162 | 'semicolon when semicolon = JLib.UChar.of_char ';'>] -> TypeVariable name
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 162, characters 7-57:
- 162 | 'semicolon when semicolon = JLib.UChar.of_char ';'>] -> TypeVariable name
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 160, characters 7-41:
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 159-162, characters 59-80:
- 159 | ...........................................................parser
- 160 | | [< 't when t = JLib.UChar.of_char 'T';
- 161 | name = parse_ident (JLib.UTF8.Buf.create 0);
- 162 | 'semicolon when semicolon = JLib.UChar.of_char ';'>] -> TypeVariable name
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 167-175, characters 27-22:
- 167 | ...........................parser
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- 169 | -> ArgumentExtends typ
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- 171 | -> ArgumentInherits typ
- 172 | | [< typ = parse_FieldTypeSignature >]
- 173 | -> ArgumentIs typ
- 174 | | [< 'star when star = JLib.UChar.of_char '*' >]
- 175 | -> ArgumentIsAny
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 167-175, characters 27-22:
- 167 | ...........................parser
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- 169 | -> ArgumentExtends typ
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- 171 | -> ArgumentInherits typ
- 172 | | [< typ = parse_FieldTypeSignature >]
- 173 | -> ArgumentIs typ
- 174 | | [< 'star when star = JLib.UChar.of_char '*' >]
- 175 | -> ArgumentIsAny
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 168, characters 9-49:
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 168, characters 51-81:
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 168, characters 9-49:
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 170, characters 9-51:
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 170, characters 53-83:
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 170, characters 9-51:
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 172, characters 9-39:
- 172 | | [< typ = parse_FieldTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 167-175, characters 27-22:
- 167 | ...........................parser
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- 169 | -> ArgumentExtends typ
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- 171 | -> ArgumentInherits typ
- 172 | | [< typ = parse_FieldTypeSignature >]
- 173 | -> ArgumentIs typ
- 174 | | [< 'star when star = JLib.UChar.of_char '*' >]
- 175 | -> ArgumentIsAny
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 174, characters 9-49:
- 174 | | [< 'star when star = JLib.UChar.of_char '*' >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 167-175, characters 27-22:
- 167 | ...........................parser
- 168 | | [< 'plus when plus = JLib.UChar.of_char '+'; typ = parse_FieldTypeSignature >]
- 169 | -> ArgumentExtends typ
- 170 | | [< 'minus when minus = JLib.UChar.of_char '-'; typ = parse_FieldTypeSignature >]
- 171 | -> ArgumentInherits typ
- 172 | | [< typ = parse_FieldTypeSignature >]
- 173 | -> ArgumentIs typ
- 174 | | [< 'star when star = JLib.UChar.of_char '*' >]
- 175 | -> ArgumentIsAny
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 177-179, characters 23-17:
- 177 | .......................parser
- 178 | | [< typ = parse_TypeArgument; other = parse_more >] -> typ::other
- 179 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 178, characters 9-33:
- 178 | | [< typ = parse_TypeArgument; other = parse_more >] -> typ::other
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 178, characters 35-53:
- 178 | | [< typ = parse_TypeArgument; other = parse_more >] -> typ::other
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 177-179, characters 23-17:
- 177 | .......................parser
- 178 | | [< typ = parse_TypeArgument; other = parse_more >] -> typ::other
- 179 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 181-186, characters 4-19:
- 181 | ....parser
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- 183 | typ = parse_TypeArgument;
- 184 | other = parse_more;
- 185 | 'gt when gt = JLib.UChar.of_char '>' >] -> typ::other
- 186 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 181-186, characters 4-19:
- 181 | ....parser
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- 183 | typ = parse_TypeArgument;
- 184 | other = parse_more;
- 185 | 'gt when gt = JLib.UChar.of_char '>' >] -> typ::other
- 186 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 182, characters 11-47:
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 183, characters 4-28:
- 183 | typ = parse_TypeArgument;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 182, characters 11-47:
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 184, characters 4-22:
- 184 | other = parse_more;
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 182, characters 11-47:
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 185, characters 4-40:
- 185 | 'gt when gt = JLib.UChar.of_char '>' >] -> typ::other
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 185, characters 4-40:
- 185 | 'gt when gt = JLib.UChar.of_char '>' >] -> typ::other
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 182, characters 11-47:
- 182 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 189-191, characters 57-42:
- 189 | .........................................................parser
- 190 | | [< 'lb when lb = JLib.UChar.of_char '[';
- 191 | typ = parse_TypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 189-191, characters 57-42:
- 189 | .........................................................parser
- 190 | | [< 'lb when lb = JLib.UChar.of_char '[';
- 191 | typ = parse_TypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 190, characters 7-43:
- 190 | | [< 'lb when lb = JLib.UChar.of_char '[';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 191, characters 7-32:
- 191 | typ = parse_TypeSignature >] -> typ
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 190, characters 7-43:
- 190 | | [< 'lb when lb = JLib.UChar.of_char '[';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 189-191, characters 57-42:
- 189 | .........................................................parser
- 190 | | [< 'lb when lb = JLib.UChar.of_char '[';
- 191 | typ = parse_TypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 193-195, characters 52-43:
- 193 | ....................................................parser
- 194 | | [< ot = parse_FieldTypeSignature >] -> GObject ot
- 195 | | [< bt = parse_base_type >] -> GBasic bt
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 194, characters 7-36:
- 194 | | [< ot = parse_FieldTypeSignature >] -> GObject ot
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 198-200, characters 74-60:
- 198 | ..........................................................................parser
- 199 | | [< ident = parse_ident (JLib.UTF8.Buf.create 0); arguments = parse_TypeArguments >]
- 200 | -> {scts_name = ident; scts_type_arguments = arguments;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 199, characters 53-84:
- 199 | | [< ident = parse_ident (JLib.UTF8.Buf.create 0); arguments = parse_TypeArguments >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 198-200, characters 74-60:
- 198 | ..........................................................................parser
- 199 | | [< ident = parse_ident (JLib.UTF8.Buf.create 0); arguments = parse_TypeArguments >]
- 200 | -> {scts_name = ident; scts_type_arguments = arguments;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 203-205, characters 39-11:
- 203 | .......................................parser
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- 205 | -> ct
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 203-205, characters 39-11:
- 203 | .......................................parser
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- 205 | -> ct
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 204, characters 9-47:
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 204, characters 49-84:
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 204, characters 9-47:
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 203-205, characters 39-11:
- 203 | .......................................parser
- 204 | | [< 'dot when dot = JLib.UChar.of_char '.'; ct = parse_SimpleClassTypeSignature >]
- 205 | -> ct
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 206-209, characters 5-17:
- 206 | .....parser
- 207 | | [< ct = parse_ClassTypeSignatureSuffix ; others = parse_ClassTypeSignatureSuffixes >]
- 208 | -> ct::others
- 209 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 207, characters 9-44:
- 207 | | [< ct = parse_ClassTypeSignatureSuffix ; others = parse_ClassTypeSignatureSuffixes >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 207, characters 47-88:
- 207 | | [< ct = parse_ClassTypeSignatureSuffix ; others = parse_ClassTypeSignatureSuffixes >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 206-209, characters 5-17:
- 206 | .....parser
- 207 | | [< ct = parse_ClassTypeSignatureSuffix ; others = parse_ClassTypeSignatureSuffixes >]
- 208 | -> ct::others
- 209 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 211-227, characters 62-52:
- 211 | ..............................................................parser
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- 213 | qualified_name = parse_QualifiedName;
- 214 | args = parse_TypeArguments;
- 215 | cts = parse_ClassTypeSignatureSuffixes;
- ...
- 224 | in {
- 225 | cts_package = package;
- 226 | cts_enclosing_classes = enclosing_classes;
- 227 | cts_simple_class_type_signature = current_class;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 211-227, characters 62-52:
- 211 | ..............................................................parser
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- 213 | qualified_name = parse_QualifiedName;
- 214 | args = parse_TypeArguments;
- 215 | cts = parse_ClassTypeSignatureSuffixes;
- ...
- 224 | in {
- 225 | cts_package = package;
- 226 | cts_enclosing_classes = enclosing_classes;
- 227 | cts_simple_class_type_signature = current_class;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 212, characters 7-41:
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 213, characters 7-43:
- 213 | qualified_name = parse_QualifiedName;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 212, characters 7-41:
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 214, characters 7-33:
- 214 | args = parse_TypeArguments;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 212, characters 7-41:
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 215, characters 7-45:
- 215 | cts = parse_ClassTypeSignatureSuffixes;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 212, characters 7-41:
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 216, characters 7-57:
- 216 | 'semicolon when semicolon = JLib.UChar.of_char ';' >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 216, characters 7-57:
- 216 | 'semicolon when semicolon = JLib.UChar.of_char ';' >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 212, characters 7-41:
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 211-227, characters 62-52:
- 211 | ..............................................................parser
- 212 | | [< 'l when l = JLib.UChar.of_char 'L';
- 213 | qualified_name = parse_QualifiedName;
- 214 | args = parse_TypeArguments;
- 215 | cts = parse_ClassTypeSignatureSuffixes;
- ...
- 224 | in {
- 225 | cts_package = package;
- 226 | cts_enclosing_classes = enclosing_classes;
- 227 | cts_simple_class_type_signature = current_class;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 229-232, characters 62-58:
- 229 | ..............................................................parser
- 230 | | [< ct = parse_ClassTypeSignature >] -> GClass ct
- 231 | | [< at = parse_ArrayTypeSignature >] -> GArray at
- 232 | | [< tv = parse_TypeVariableSignature >] -> GVariable tv
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 230, characters 7-36:
- 230 | | [< ct = parse_ClassTypeSignature >] -> GClass ct
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 231, characters 7-36:
- 231 | | [< at = parse_ArrayTypeSignature >] -> GArray at
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 234-238, characters 61-31:
- 234 | .............................................................parser
- 235 | | [< 'colon when colon= JLib.UChar.of_char ':';
- 236 | e = (parser
- 237 | | [< typ = parse_FieldTypeSignature >] -> Some typ
- 238 | | [< >] -> None) >] -> e
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 234-238, characters 61-31:
- 234 | .............................................................parser
- 235 | | [< 'colon when colon= JLib.UChar.of_char ':';
- 236 | e = (parser
- 237 | | [< typ = parse_FieldTypeSignature >] -> Some typ
- 238 | | [< >] -> None) >] -> e
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 235, characters 7-48:
- 235 | | [< 'colon when colon= JLib.UChar.of_char ':';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 237, characters 12-42:
- 237 | | [< typ = parse_FieldTypeSignature >] -> Some typ
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 234-238, characters 61-31:
- 234 | .............................................................parser
- 235 | | [< 'colon when colon= JLib.UChar.of_char ':';
- 236 | e = (parser
- 237 | | [< typ = parse_FieldTypeSignature >] -> Some typ
- 238 | | [< >] -> None) >] -> e
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 242-243, characters 29-92:
- 242 | .............................parser
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 242-243, characters 29-92:
- 242 | .............................parser
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 243, characters 9-50:
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 243, characters 52-82:
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 243, characters 9-50:
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 242-243, characters 29-92:
- 242 | .............................parser
- 243 | | [< 'colon when colon= JLib.UChar.of_char ':'; typ = parse_FieldTypeSignature >] -> typ
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 244-246, characters 5-17:
- 244 | .....parser
- 245 | | [< ib = parse_InterfaceBound; others = parse_InterfaceBounds >] -> ib::others
- 246 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 245, characters 9-34:
- 245 | | [< ib = parse_InterfaceBound; others = parse_InterfaceBounds >] -> ib::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 245, characters 36-66:
- 245 | | [< ib = parse_InterfaceBound; others = parse_InterfaceBounds >] -> ib::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 244-246, characters 5-17:
- 244 | .....parser
- 245 | | [< ib = parse_InterfaceBound; others = parse_InterfaceBounds >] -> ib::others
- 246 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 250-252, characters 66-76:
- 250 | ..................................................................parser
- 251 | | [< name = parse_ident (JLib.UTF8.Buf.create 0); cb = parse_ClassBound; ib = parse_InterfaceBounds >]
- 252 | -> {ftp_name = name; ftp_class_bound = cb; ftp_interface_bounds = ib;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 251, characters 54-75:
- 251 | | [< name = parse_ident (JLib.UTF8.Buf.create 0); cb = parse_ClassBound; ib = parse_InterfaceBounds >]
- ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 250-252, characters 66-76:
- 250 | ..................................................................parser
- 251 | | [< name = parse_ident (JLib.UTF8.Buf.create 0); cb = parse_ClassBound; ib = parse_InterfaceBounds >]
- 252 | -> {ftp_name = name; ftp_class_bound = cb; ftp_interface_bounds = ib;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 251, characters 77-103:
- 251 | | [< name = parse_ident (JLib.UTF8.Buf.create 0); cb = parse_ClassBound; ib = parse_InterfaceBounds >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 250-252, characters 66-76:
- 250 | ..................................................................parser
- 251 | | [< name = parse_ident (JLib.UTF8.Buf.create 0); cb = parse_ClassBound; ib = parse_InterfaceBounds >]
- 252 | -> {ftp_name = name; ftp_class_bound = cb; ftp_interface_bounds = ib;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 254-256, characters 23-17:
- 254 | .......................parser
- 255 | | [< typ = parse_FormalTypeParameter ; others = parse_more >] -> typ::others
- 256 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 255, characters 9-40:
- 255 | | [< typ = parse_FormalTypeParameter ; others = parse_more >] -> typ::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 255, characters 43-62:
- 255 | | [< typ = parse_FormalTypeParameter ; others = parse_more >] -> typ::others
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 254-256, characters 23-17:
- 254 | .......................parser
- 255 | | [< typ = parse_FormalTypeParameter ; others = parse_more >] -> typ::others
- 256 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 257-263, characters 5-17:
- 257 | .....parser
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- 259 | typ = parse_FormalTypeParameter;
- 260 | others = parse_more;
- 261 | 'gt when gt = JLib.UChar.of_char '>' >]
- 262 | -> typ::others
- 263 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 257-263, characters 5-17:
- 257 | .....parser
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- 259 | typ = parse_FormalTypeParameter;
- 260 | others = parse_more;
- 261 | 'gt when gt = JLib.UChar.of_char '>' >]
- 262 | -> typ::others
- 263 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 258, characters 9-45:
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 259, characters 2-33:
- 259 | typ = parse_FormalTypeParameter;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 258, characters 9-45:
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 260, characters 2-21:
- 260 | others = parse_more;
- ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 258, characters 9-45:
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 261, characters 2-38:
- 261 | 'gt when gt = JLib.UChar.of_char '>' >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 261, characters 2-38:
- 261 | 'gt when gt = JLib.UChar.of_char '>' >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 258, characters 9-45:
- 258 | | [< 'lt when lt = JLib.UChar.of_char '<';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 266-268, characters 77-15:
- 266 | .............................................................................parser
- 267 | | [< sis = parse_ClassTypeSignature; others = parse_SuperinterfaceSignatures >] -> sis::others
- 268 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 267, characters 7-37:
- 267 | | [< sis = parse_ClassTypeSignature; others = parse_SuperinterfaceSignatures >] -> sis::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 267, characters 39-78:
- 267 | | [< sis = parse_ClassTypeSignature; others = parse_SuperinterfaceSignatures >] -> sis::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 266-268, characters 77-15:
- 266 | .............................................................................parser
- 267 | | [< sis = parse_ClassTypeSignature; others = parse_SuperinterfaceSignatures >] -> sis::others
- 268 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 270-276, characters 54-34:
- 270 | ......................................................parser
- 271 | | [< ftp = parse_FormalTypeParameters;
- 272 | scs = parse_SuperclassSignature;
- 273 | sis = parse_SuperinterfaceSignatures >] ->
- 274 | {cs_formal_type_parameters = ftp;
- 275 | cs_super_class = scs;
- 276 | cs_super_interfaces = sis;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 272, characters 7-38:
- 272 | scs = parse_SuperclassSignature;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 270-276, characters 54-34:
- 270 | ......................................................parser
- 271 | | [< ftp = parse_FormalTypeParameters;
- 272 | scs = parse_SuperclassSignature;
- 273 | sis = parse_SuperinterfaceSignatures >] ->
- 274 | {cs_formal_type_parameters = ftp;
- 275 | cs_super_class = scs;
- 276 | cs_super_interfaces = sis;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 273, characters 7-43:
- 273 | sis = parse_SuperinterfaceSignatures >] ->
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 270-276, characters 54-34:
- 270 | ......................................................parser
- 271 | | [< ftp = parse_FormalTypeParameters;
- 272 | scs = parse_SuperclassSignature;
- 273 | sis = parse_SuperinterfaceSignatures >] ->
- 274 | {cs_formal_type_parameters = ftp;
- 275 | cs_super_class = scs;
- 276 | cs_super_interfaces = sis;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 280-282, characters 58-47:
- 280 | ..........................................................parser
- 281 | | [< 'v when v = JLib.UChar.of_char 'V' >] -> None
- 282 | | [< ts = parse_TypeSignature >] -> Some ts
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 280-282, characters 58-47:
- 280 | ..........................................................parser
- 281 | | [< 'v when v = JLib.UChar.of_char 'V' >] -> None
- 282 | | [< ts = parse_TypeSignature >] -> Some ts
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 281, characters 9-43:
- 281 | | [< 'v when v = JLib.UChar.of_char 'V' >] -> None
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 284-290, characters 67-17:
- 284 | ...................................................................parser
- 285 | | [< 'circ when circ = JLib.UChar.of_char '^';
- 286 | e = (parser
- 287 | | [< cl = parse_ClassTypeSignature >] -> ThrowsClass cl
- 288 | | [< var = parse_TypeVariableSignature >] -> ThrowsTypeVariable var);
- 289 | others = parse_ThrowsSignature >] -> e::others
- 290 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 284-290, characters 67-17:
- 284 | ...................................................................parser
- 285 | | [< 'circ when circ = JLib.UChar.of_char '^';
- 286 | e = (parser
- 287 | | [< cl = parse_ClassTypeSignature >] -> ThrowsClass cl
- 288 | | [< var = parse_TypeVariableSignature >] -> ThrowsTypeVariable var);
- 289 | others = parse_ThrowsSignature >] -> e::others
- 290 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 285, characters 9-49:
- 285 | | [< 'circ when circ = JLib.UChar.of_char '^';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 287, characters 7-36:
- 287 | | [< cl = parse_ClassTypeSignature >] -> ThrowsClass cl
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 286-288, characters 2-70:
- 286 | ..e = (parser
- 287 | | [< cl = parse_ClassTypeSignature >] -> ThrowsClass cl
- 288 | | [< var = parse_TypeVariableSignature >] -> ThrowsTypeVariable var).
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 285, characters 9-49:
- 285 | | [< 'circ when circ = JLib.UChar.of_char '^';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 289, characters 2-32:
- 289 | others = parse_ThrowsSignature >] -> e::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 285, characters 9-49:
- 285 | | [< 'circ when circ = JLib.UChar.of_char '^';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 291-293, characters 60-17:
- 291 | ............................................................parser
- 292 | | [< ts = parse_TypeSignature ; others = parse_TypeSignatures >] -> ts::others
- 293 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 292, characters 9-33:
- 292 | | [< ts = parse_TypeSignature ; others = parse_TypeSignatures >] -> ts::others
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 292, characters 36-65:
- 292 | | [< ts = parse_TypeSignature ; others = parse_TypeSignatures >] -> ts::others
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 291-293, characters 60-17:
- 291 | ............................................................parser
- 292 | | [< ts = parse_TypeSignature ; others = parse_TypeSignatures >] -> ts::others
- 293 | | [< >] -> []
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 296, characters 2-42:
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 296, characters 2-42:
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 297, characters 2-27:
- 297 | ts = parse_TypeSignatures;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 298, characters 2-42:
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 298, characters 2-42:
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 299, characters 2-23:
- 299 | rt = parse_ReturnType;
- ^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 300, characters 2-32:
- 300 | throws = parse_ThrowsSignature >]
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", lines 294-304, characters 5-25:
- 294 | .....parser
- 295 | | [< fp = parse_FormalTypeParameters;
- 296 | 'lpar when lpar = JLib.UChar.of_char '(';
- 297 | ts = parse_TypeSignatures;
- 298 | 'rpar when rpar = JLib.UChar.of_char ')';
- ...
- 301 | -> { mts_formal_type_parameters = fp;
- 302 | mts_type_signature = ts;
- 303 | mts_return_type = rt;
- 304 | mts_throws = throws;}
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 311, characters 6-18:
- 311 | | Stream.Error _
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 312, characters 6-20:
- 312 | | Stream.Failure -> raise (Class_structure_error ("Ill-formed class Signature attribute: "^s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 319, characters 6-18:
- 319 | | Stream.Error _
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 320, characters 6-20:
- 320 | | Stream.Failure -> raise (Class_structure_error ("Ill-formed method Signature attribute: "^s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 328, characters 6-18:
- 328 | | Stream.Error _
- ^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "jParseSignature.ml", line 329, characters 6-20:
- 329 | | Stream.Failure -> raise (Class_structure_error ("Ill-formed field Signature attribute: "^s))
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jLow2High.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jParse.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jFile.ml
- File "jFile.ml", line 123, characters 13-35:
- 123 | let ch = Pervasives.open_in_bin (Filename.concat d c) in
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "jFile.ml", line 159, characters 12-35:
- 159 | let f = Pervasives.open_out_bin (Filename.concat output_dir c) in
- ^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "jFile.ml", line 174, characters 37-59:
- 174 | let input = JLib.IO.input_channel (Pervasives.open_in_bin file) in
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "jFile.ml", line 294, characters 15-37:
- 294 | let ch = Pervasives.open_in_bin c in
- ^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jManifest.ml
- File "jManifest.mll", line 72, characters 8-24:
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- File "jManifest.mll", line 80, characters 14-30:
- Alert deprecated: Stdlib.String.lowercase
- Use String.lowercase_ascii/StringLabels.lowercase_ascii instead.
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c jPrint.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -for-pack Javalib_pack -c javalib.ml
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -I ptrees -pack ptrees/ptset.cmx ptrees/ptmap.cmx ptrees/genericSet.cmx ptrees/genericMap.cmx jLib.cmx jBasics.cmx jBasicsLow.cmx jSignature.cmx jCode.cmx jClass.cmx jDumpBasics.cmx jParseCode.cmx jInstruction.cmx jUnparseSignature.cmx jDumpLow.cmx jHigh2Low.cmx jUnparse.cmx jParseSignature.cmx jLow2High.cmx jParse.cmx jFile.cmx jManifest.cmx jPrint.cmx javalib.cmx -o javalib_pack.cmx
- /home/opam/.opam/4.14/bin/ocamlfind ocamlopt -g -package unix,str,extlib,camomile,zip -a -o javalib.cmxa javalib_pack.cmx
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/javalib.3.0/src'
-> compiled javalib.3.0
Processing 3/4: [javalib: ocamlfind remove]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "ocamlfind" "remove" "javalib" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/javalib.3.0)
- Removed /home/opam/.opam/4.14/lib/javalib/META
- Removed /home/opam/.opam/4.14/lib/javalib
-> removed javalib.3.0
Processing 4/4: [javalib: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/javalib.3.0)
- make -C src install
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/javalib.3.0/src'
- /home/opam/.opam/4.14/bin/ocamlfind install javalib META javalib.cma javalib.cmi javalib.cmxa javalib_pack.cmi javalib_pack.cmo javalib_pack.cmx javalib_pack.o ptrees/ptset.mli ptrees/ptmap.mli ptrees/genericSet.mli ptrees/genericMap.mli jLib.mli jBasics.mli jBasicsLow.mli jSignature.mli jCode.mli jClassLow.mli jClass.mli jDumpBasics.mli jUnparseSignature.mli jDumpLow.mli jParseCode.mli jInstruction.mli jUnparse.mli jParseSignature.mli jParse.mli jLow2High.mli jHigh2Low.mli jFile.mli jManifest.mli javalib.mli javalib.a
- Installed /home/opam/.opam/4.14/lib/javalib/javalib.a
- Installed /home/opam/.opam/4.14/lib/javalib/javalib.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jManifest.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jFile.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jHigh2Low.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jLow2High.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jParse.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jParseSignature.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jUnparse.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jInstruction.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jParseCode.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jDumpLow.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jUnparseSignature.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jDumpBasics.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jClass.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jClassLow.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jCode.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jSignature.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jBasicsLow.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jBasics.mli
- Installed /home/opam/.opam/4.14/lib/javalib/jLib.mli
- Installed /home/opam/.opam/4.14/lib/javalib/genericMap.mli
- Installed /home/opam/.opam/4.14/lib/javalib/genericSet.mli
- Installed /home/opam/.opam/4.14/lib/javalib/ptmap.mli
- Installed /home/opam/.opam/4.14/lib/javalib/ptset.mli
- Installed /home/opam/.opam/4.14/lib/javalib/javalib_pack.o
- Installed /home/opam/.opam/4.14/lib/javalib/javalib_pack.cmx
- Installed /home/opam/.opam/4.14/lib/javalib/javalib_pack.cmo
- Installed /home/opam/.opam/4.14/lib/javalib/javalib_pack.cmi
- Installed /home/opam/.opam/4.14/lib/javalib/javalib.cmxa
- Installed /home/opam/.opam/4.14/lib/javalib/javalib.cmi
- Installed /home/opam/.opam/4.14/lib/javalib/javalib.cma
- Installed /home/opam/.opam/4.14/lib/javalib/META
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/javalib.3.0/src'
-> installed javalib.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-02-27 03:12.58 ---> saved as "b0da1426d4d74a9fb4a186cc58c94fa6885143a84978c0f00ad0546c8e7078cc"
Job succeeded
2026-02-27 03:13.09: Job succeeded