Bastien Jansen
Bastien Jansen
@gdejohn pointed out that it's currently not possible to retrieve the `value` of an `` field. This is because the following method: ``` ceylon shared formal Element? getElementById(String elementId); ```...
See https://github.com/antlr/jetbrains-plugin-st4/pull/29#issuecomment-692357646
``` com.intellij.diagnostic.PluginException: `ActionUpdateThread.OLD_EDT` is deprecated and going to be removed soon. 'org.antlr.intellij.plugin.actions.ConfigureANTLRAction' must override `getActionUpdateThread` and chose EDT or BGT. See ActionUpdateThread javadoc. [Plugin: org.antlr.intellij.plugin] at com.intellij.diagnostic.PluginProblemReporterImpl.createPluginExceptionByClass(PluginProblemReporterImpl.java:23) at com.intellij.diagnostic.PluginException.createByClass(PluginException.java:90) at...
Not sure how it happened… ``` File file:///Users/…/grammars-v4/r/R.g4 isn't a lexer grammar java.lang.ClassCastException: class org.antlr.v4.tool.Grammar cannot be cast to class org.antlr.v4.tool.LexerGrammar (org.antlr.v4.tool.Grammar and org.antlr.v4.tool.LexerGrammar are in unnamed module of loader...
Happens when renaming `result` in the following example: ```twig {# @pebvariable name="classes" type="java.util.List" #} {% for result in classes %} {{ result.property }} {% endfor %} ``` ``` kotlin.NotImplementedError: An...
#### Check List: * Fixes #3069 * Unit tests : YES * Javadoc with a code example (on API only) : YES * PR meets the [contributing guidelines](https://github.com/assertj/assertj/blob/main/CONTRIBUTING.md) Following the...
Hi, I'm trying to validate each element of an array, rather than the size of said array. According to [jls§9.7.4](https://docs.oracle.com/javase/specs/jls/se22/html/jls-9.html#jls-9.7.4), annotations can be used on arrays like this: Type annotations...
https://hibernate.atlassian.net/browse/HHH-19959 Fixes a regression in Hibernate 7, which ignores the `default-cascade` attribute in hbm.xml files. ---------------------- By submitting this pull request, I confirm that my contribution is made under the...