Nadrieril
Nadrieril
There has been discussion of removing this feature from the language, so I'm not in a hurry to implement it.
Use https://github.com/dtolnay/trybuild and/or https://github.com/eupn/macrotest
This is the one bit where typechecking isn't standard-compliant: we don't check that the type of the branches of the merge don't depend on the passed value. I'm still looking...
`latexrun_args` is kept between tests, therefore it should not be mutated. Running `./runall` failed because of that for me.
```markdown --- title: | Some title --- Foo ``` Error: ``` user error (20eescg.md:2:0: error | 2 | Some title | ^ Unexpected ' ') ``` That used to work...
I've been working on a [project](https://github.com/Nadrieril/dhall-rust) with a [fairly large grammar](https://github.com/dhall-lang/dhall-lang/blob/781961f4694667667f093d28e7b35569c67678c4/standard/dhall.abnf) for a while now, and in the process I've had to write and maintain code to convert the output...
TL;DR: could the code generator implement precedence climbing automatically as an optimization ? Here is the context for my question: I'm working with a fairly complex language grammar generated from...
This recent paper (https://arxiv.org/abs/2005.06444) describes an alternative technique for parsing PEG grammars: instead of top-down, left-to-right, they propose a bottom-up, right-to-left approach, that correctly handles left-recursion and apparently has also...
I just switched my root to be on tmpfs. I decided to start with mounting the real root fs to `/persistent` and bind-mounting everything from there. Except that it wouldn't...