-
Followup to #52:
- @afs : Have you decided on what complexity the grammar should be?
SPARQL is LL(1), which is simple in tech terms. It is compatible with LALR(1) there are parser generators for e…
-
The WGSL build process checks the following for the grammar:
- that a valid tree-sitter grammar can be generated. (So there are no ambiguities for GLR with context-aware lookahead)
- that the tree-s…
-
https://www.gnu.org/software/bison/ | https://github.com/akimd/bison
> Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or generaliz…
-
leex (http://www.erlang.org/doc/man/leex.html) is a regular expression based lexical analyzer generator for Erlang, similar to lex or flex.
yecc (http://www.erlang.org/doc/man/yecc.html) is an LALR-1…
-
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…
-
The attached file (strip the .txt) is a grammar for the full Ada language. I tried to run 'tree-sitter generate ./ada_annex_p.js'; it never returned, so I killed it after 90 minutes.
This file is a…
-
After manually edit https://github.com/erlang/otp/blob/master/lib/compiler/src/core_parse.yrl to convert it to an EBNF understood by https://www.bottlecaps.de/rr/ui to generate a navigable railroad di…
-
## Feature Request
Recently when I was doing tpc-c testing and profiling by using go-tpc with go-pprof, I've found that the Parser component takes significant CPU usage and heap space.
The flam…
-
I get the following errors when trying to generate Gocc from the [gocc2.bnf](https://github.com/goccmack/gocc/blob/master/spec/gocc2.ebnf) grammar, using the [gen.sh](https://github.com/goccmack/gocc/…
-
I'm testing `jison` with a naked postgresql-13.3 grammar generated by a modifed `bison` (see https://github.com/mingodad/lalr-parser-test) the naked grammar is parsed properly by `bison` and `byacc` s…