-
Hi,
unless I'm wrong `default` methods in inner interfaces are not parsed:
e.g:
```
BEGIN(MyParser)
(...)
public static interface Def {
public default boolean isNil() { return false;} /…
-
The methods mentioned in
https://javacc.github.io/javacc/documentation/api.html#error-messages
are not generated although ERROR_REPORTING=true
I am using version 7.0.11.
-
It appears to me that all is needed is add the definition on the MOJO as From a quick inspection the code seem safe to me.
Is there anything against making it threadSafe=true on the Mojo definit…
-
As mentioned in [exist_tools.md](https://github.com/ent-worm/MySQLParser/blob/master/pre-work/exist_tools.md), JSqlParser and ZQL are using JAVACC for parse sql statements, while mysql.g is also a too…
-
This is actually taken from the comments in `tla+.jj` but I thought I would move it into an actual issue for tracking:
https://github.com/tlaplus/tlaplus/blob/02c8a365b673a9f37b1eb64c4188607e1429f3…
-
javacc-8-core contains code contributed by several people, however its git history is blank: https://github.com/javacc/javacc-8-core/graphs/contributors
For instance, I contributed this code: https…
-
**Describe the bug**
When parsing header files, the parser ignores ```#error``` when it should not. When it correctly does fail due to an ```#error``` it fails to identify the cause of the problem…
-
For what it's worth...
JavaCC supports multi-catch inside of actions. For example this works:
```java
"A"
{ try (Foo a = new Foo(); Bar b = new Bar()) {
System.out.println("hello…
-
Provide a JavaCC formatter to format a JavaCC grammar file with some settings (spaces, tabs, etc).
This JavaCCFormatter should consume the existing JavaFormatter for INJECT production for instance …
-
As of now, JavaCC generates parsers.
However, it would be nice if it could generate fuzzers as well.
In other words, it should take a `Random` instance, and produce a randomized sample as if it …