Ulysse

Results 42 issues of Ulysse

When trying to compile from sources, I get this error: > Compilation failed: 36 error(s), 0 warning(s) > CMakeFiles/finalterm.dir/build.make:115: recipe for target 'vala.stamp' failed > make[2]: **\* [vala.stamp] Error 1...

Installation

Fixes #1506 `??` holes where interfering with he parsing of custom `( ?? )` prefix operators. Since we do not use this hole syntax this PR simply removes their remnants.

When querying jump to declaration of a record's label `foo.ba|r` merlin would only jump to the beginning of the corresponding record type declaration. This is due to the uid's of...

*~Two~ Three years later* This fixes #949 In #949 the issue was identified as `Longident.parse` returning wrong lids for infix operators. A PR was merged in the compiler to expose...

There is currently an issue with Merlin's new typed holes and ppxes. Since these holes were added as new AST node ppxes crash in there presence. This PR removes these...

Fixes issue #1388. This necessitate an update of `dot-merlin-reader`. I did not test with `dune ocaml-merlin`. @vzaliva could you try [this branch](https://github.com/voodoos/merlin/tree/fix-issue-1388) and confirm whether it solves your issue ?...

## Context Merlin associates with each ppx command line a `workdir` value which represents the directory in witch the ppx executable will be started by Merlin. This configuration value is...

Given this type definition in a file name `main.ml`: ``` type module_declaration_lazy = int and module_data = { mda_declaration : module_declaration_lazy;} ``` Running: ``` ocamlmerlin single type-enclosing -position 1:34 -principal...

Kind/Bug

This PR implements the proposal in https://github.com/ocaml/dune/issues/4639 It allows one to specify distinct flags and sources when building the same stubs for different modes (byte/native). This is only possible for...