Ulysse
Ulysse
@let-def any news on this ?
The first error is: > gee-1.0.vapi:7.3-7.53: error: `Gee.Functions' already contains a definition for`get_compare_func_for' > public static GLib.CompareFunc get_compare_func_for (GLib.Type t); > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > gee-0.8.vapi:7.3-7.57: note: previous definition of `get_compare_func_for' was...
> @voodoos would you be interested in having a look? I think I am able to reproduce: when opening the specified file, even with no configuration the extension helper slows...
I was able to make a minimal example: ``` module Make () = struct module A = struct end module B = C.C1 end ``` Has the outline: ``` {...
The fix has been merge on Merlin master.
> @voodoos Do you think that it is merlin-related? Or whom should I ping? It might be related to Merlin, or to the PPX that reports bad location. The first...
I tried to write a test and cannot, indeed, reproduce: https://github.com/ocaml/merlin/pull/1473/files @tatchi could you double-check that I am indeed testing the correct behaviour?
@let-def : the parser raises `empty_file` even if the file is not empty. The exemple is minimal, removing `(**) ` or `*` does not trigger the failure...
And using `ocaml-base-compiler.4.13.0~beta1` the result is: ``` /opt/hostedtoolcache/opam/2.0.9/x86_64/opam switch create . --no-install --packages ocaml-base-compiler.4.13.0~beta1 [ERROR] Could not resolve set of base packages: The following dependencies couldn't be met: - ocaml-base-compiler...
For the record here is the configuration that works for us: ```yaml build: strategy: matrix: os: - macos-latest - ubuntu-latest - windows-latest ocaml-compiler: - ocaml-base-compiler.4.13.0~beta1 runs-on: ${{ matrix.os }} steps:...