-
It's simply too slow.
-
Let's start with the following (not working, but a good starting point):
```
/* lexical grammar */
%lex
%%
[aeiouptksmnlwj\-]+\b return 'NIMI'
\s return 'SPACE'
\n return 'NEWLIN…
-
Hi! I wonder if there's a public url with the jison debugger but using jison-gho?
I noticed there's a forked jison debugger repo with jison-gho but I've spent a few hours
trying to build it with n…
-
dear:
I want ask you how to download the file 'coco_dataset_full_rm_style.json'
thank you
-
I have this line which causes an error:
```lex
"/*" this.begin("MUTLILINE_COMMMENT");
```
where `MULTILINE_COMMENT` is successfully defined with `%x MULTILINE_COMMENT`
``…
-
The current version of jison used by mermaid is not maintained. There is a fork with some 1000 more commits under its belt. Letys switch to that version instead.
https://github.com/GerHobbelt/jison
-
The parser does not accept left parenthesis after USING clause. The generative AI model I use for generating SQL queries keeps adding parentheses.
Example:
```
SELECT * FROM ? a JOIN ? b USING (…
-
Hello,
using Node 10.5, I've these 2 errors when launching test:
```
test more()
⚡ SyntaxError: Unexpected token (
at new RegExpLexer (/home/xavier/dev/debian/src/pkg-js/packa…
-
It would be kind of nice to be able to convert a `.ne` file to a `.pegjs` file. Just a thought.
-
In the flex/bison world, you can write simple text processing utilities. For example, a wc program:
%{
/*
- word count
*/
var nrchars, nrwords, nrlines;
%}
%%
\n ++nrchars, ++nrlines;
…