Florian Angeletti
Florian Angeletti
I agree that some level of syntactic highlighting will help with the readability of error messages. However, colors are a scarce resources and I am not convinced that syntactic category...
Note when you are working on a draft PR and trying to get the test suite to pass, it is better to work on a separate branch (after activating Appveyor...
There is still some planned work in OCaml 5 (after 5.0) to better handle uncaught exceptions on both threads and domains.
My opinion is that it is too late in the 5.0 cycle to introduce such breaking change, even if they are minor. Moreover, `dune` uses `-strict-format` by default, thus it...
Current trunk (and 4.13) has exactly the same behavior as 4.12: * `ocamlc -o foo -c a.c` ⇒ `gcc ... -c a.c` Similarly, `ocamlc -o foo -c a.c` does send...
@nojb : Sorry, I meant the case without the `-c` flag where both 4.12 and trunk ignores the `-o` flag.
On the specific issue of the release process, the pre-release, release and post-release commits are already special because we need to change the version number and thus update `configure` anyway....
This is a change of behavior introduced by 6e5b86355accef1 in #8516. The capnp-rpc code can be reduced to: ```ocaml class type ct = object method m : [> `A] end...
Having another looks, a similar example is rejected in previous version of OCaml ```ocaml class always_rejected = object (self) method x = None method me = (self :> < x:...
I still plan to address this issue at some point. However, printing the `... as 'a` annotation when the annotation is useful requires more work on the type printer: I...