Gabriel Piacenti
Gabriel Piacenti
Opening a project greets you with this IDE error: ``` java.lang.NullPointerException at org.antlr.intellij.plugin.profiler.ProfilerPanel.lambda$createUIComponents$1(ProfilerPanel.java:384) at java.desktop/javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:219) at java.desktop/javax.swing.DefaultListSelectionModel.fireValueChanged(DefaultListSelectionModel.java:186) at java.desktop/javax.swing.DefaultListSelectionModel.setValueIsAdjusting(DefaultListSelectionModel.java:723) at java.desktop/javax.swing.plaf.basic.BasicTableUI$Handler.setValueIsAdjusting(BasicTableUI.java:972) at java.desktop/javax.swing.plaf.basic.BasicTableUI$Handler.mouseReleased(BasicTableUI.java:1185) at java.desktop/javax.swing.plaf.basic.BasicTableUI$MouseInputHandler.mouseReleased(BasicTableUI.java:820) at java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:298) at java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:297) at...
### 🕗 Version 0.5.8-rc.4 ### 💻 Code or Package Name: @amcharts/amcharts4 ### 🙁 Actual behavior running `dukat core.d.ts` from the amcharts folder generates kotlin full of compiler errors. Some of...
For awareness https://github.com/antlr/antlr4/pull/3399 implemented a new option that would be worth supporting. I might create PR when I get time which may take a while. Creating this issue in case...
I just tried using a couple different version of this library to test things out. I started with version 0.0.4 and then tried one of the latest ones form jitpack...
ANTLR was designed with extensibility through subclassing in mind. There are currently some limitations where we can't subclass or override methods. One such example is if you want to disable...
I've had to write many grammars that tend to suffer from the problem described in [here](https://github.com/antlr/antlr4/issues/1071) and [here](https://github.com/antlr/antlr4/issues/1132). Recently I was writing a grammar to parse a json that used...
I recently had a problem where my system default JDK was 8 while I was working on projects using JDK 17. Needless to say that some things can fail in...
If I try a simple ``` [when]with an object where=/a/b/c/d/object [when]- type is "{type}"=type == "{type}" ``` I get this error `No pattern was found to add the constraint to:...
I have a situation where when running RuleUnit X it evaluates a rule from RuleUnit Y. When I run RuleUnit Y the same rule fires again so I end up...
I'm trying to intercept read access to class fields happening from some of its own methods. While I can easily do something like that by intercepting their getters, not all...