-
_PR transferred from https://caml.inria.fr/mantis/view.php?id=5285_
[original reporter: @ygrek]
Sometimes it is desirable to keep generated files (e.g. some source-to-source transformation or code…
-
It's tedious to parse expressions without associativity attributes.
Left associative = reduce in a shift/reduce conflict
Right associative = shift in a shift/reduce conflict
I don't like ocamly…
-
All of the named unicode charicter classes should be bound to variables in an initial basis, and common expressions should be given sensible names. For example:
`[0-9]` => digit_ascii
`[0-…
-
@freebroccolo When the parser fails, I'd like it to emit some minimal message that tells me what went wrong; it doesn't need to be a good message (for instance, I don't yet have the bandwidth to devel…
-
Apparently, the [TIP language](https://tip-org.github.io/) has incorporated SMT-LIB 2.6 changes (https://github.com/tip-org/tools/commit/2995668c6e0d3fb68ec71a494992f74f3c96b877) and is therefore no l…
-
## Motivation
The main use case comes from Anil's experience with duniverse. Dune's composition model seems to break down for massive workspaces created by duniverse. Specifically, it does not work…
-
Hi,
Consider these statements ...
```rust
let x = 1;
let const x = 1;
fn main() {}
fn main() -> void {}
```
We often have such instances where the default token is assumed, if it is no…
-
I am experiencing a bug with ocamllsp and it was indicated to me that this may be due to a version mismatch between the compiler that builds my project and the compiler that compiled the language serv…
-
I've done a experimental tool to convert bison grammars to a kind of EBNF understood by https://www.bottlecaps.de/rr/ui to generate railroad diagrams see bellow the converted `src/kernel_internals/par…
-
report from : https://github.com/ocsigen/js_of_ocaml/blob/master/compiler/js_parser.mly
A-
```
return
a+b
```
is parsed as
`return a+a;` instead of `return; a+b;`
B-
```
return a
++ b
```
sould …
hhugo updated
9 years ago