-
I (and others) would like to be able to use libtreesitter in emacs without necessarily being reliant on the node/rust toolchain.
Cursory inspection of a couple of grammar.c files suggest that they im…
-
Would be nice if this tool could create an `EBNF` accepted by (IPV6) https://www.bottlecaps.de/rr/ui or (IPV4) https://rr.red-dove.com/ui to generate grammar railroad diagrams (see example bellow).
…
-
Currently we need to write separate code to convert pest parsed representation to our own AST representation, as shown in JSON example. The drawback of that approach is that you have to keep that conv…
-
I am new to jison (my first day of using it) so excuse my probable ignorance in advance. There are some issues after switching to your fork from classical jison which I'd like to report here and get s…
-
### background
Code generated by goyacc has a dependence on package globals that it doesn't need to have.
`yyDebug`, and `yyErrorVerbose` do not specifically need to be globals, and can be variabl…
-
Found this error when I tried to write a rule (in Flex/Bison format) to parse integers (both positive and negative):
```
%lex
%%
-?[0-9]+ return 'INT'
/lex
%start integer
%%
integer
: INT…
-
Trying out the new Java support. My uses will want to use yacc/bison flavor of grammar. Given:
```
./bin/syntax -m LALR1 --grammar ../syntax_test/src/com/syntax/calc.bnf -o ../syntax_test/src/c…
enebo updated
5 years ago
-
Hello!
I am inquiring to see if the project maintainers would support me submitting this repository to Google's OSSFuzz project? I would develop the necessary build scripts and fuzz targets to inte…
-
```
~/repos/bt/EBNF.cr/ asdf which crystal /Users/b/.asdf/installs/crystal/1.7.2/bin/crystal
```
```
~/repos/bt/EBNF.cr/ asdf which shards
/Users/b/.asdf/installs/crystal/1.7.…
-
**Obs: Updated with the grammar on 2022-10-09**
Using this fork of bison (https://github.com/mingodad/lalr-parser-test) to generate an `EBNF` understood by https://www.bottlecaps.de/rr/ui and manua…