Samael
Samael
may need to use something like ``` DumbService.getInstance(project).runWhenSmart(() -> { // your code }); ```
Changing anything in DLangParser seems a bit hideous as it's generated code but I've changed: ``` @Nullable private Token current() { return tokens[index]; } ``` to: ``` @Nullable private Token...
Similar issue in v1.25 on Sep 15th but this time on line 8662: key | value -- | -- error.message | Index 8 out of bounds for length 8 error.stacktrace...
in v1.26 of the plugin there was an ArrayIndexOutOfBoundsException thrown (from WebStorm) on the final line of DLangParser::advance() which does `return tokens[index - 1];` ``` java.lang.ArrayIndexOutOfBoundsException: Index 8 out of...
the https://github.com/intellij-dlanguage/intellij-dlanguage/commit/c3719e5f5bb1ff202aca07e31a51f14fe74e1468 commit adds _getDubProjectImportPaths_ method to DubConfigurationParser but it's not used yet.
Turns out it is possible to get to the settings but they hid them under the customize section:  I still think we should change the flow to make things...
got another one of these in CLion: ``` ava.lang.IllegalStateException: @NotNull method io/github/intellij/dlanguage/parser/DLangParser.tok must not return null at io.github.intellij.dlanguage.parser.DLangParser.$$$reportNull$$$0(DLangParser.java) at io.github.intellij.dlanguage.parser.DLangParser.tok(DLangParser.java:8608) at io.github.intellij.dlanguage.parser.DLangParser.parseUnaryExpression(DLangParser.java:7826) at io.githu... ``` the last action was **EditorBackSpace**
seeing this again IDEA 2020.1.2 Java JetBrains 11.0.7 plugin version 1.24.1 ``` java.lang.IllegalStateException: @NotNull method io/github/intellij/dlanguage/parser/DLangParser.tok must not return null at io.github.intellij.dlanguage.parser.DLangParser.$$$reportNull$$$0(DLangParser.java) at io.github.intellij.dlanguage.parser.DLangParser.tok(DLangParser.java:8608) at io.github.intellij.dlanguage.parser.DLangParser.parseUnaryExpression(DLangParser.java:7714) at io.githu... ```
IDEA 2020.2 plugin version 1.25 last action: **Run** and another identical one for **CodeCompletion** Message: **@NotNull method io/github/intellij/dlanguage/parser/DLangParser.tok must not return null** ``` java.lang.IllegalStateException: @NotNull method io/github/intellij/dlanguage/parser/DLangParser.tok must not return...
Same again this month (older intellij and plugin: IDEA 2020.1.3 with 1.24.2 plugin): key | value -- | -- Additional info: | None error.message | @NotNull method io/github/intellij/dlanguage/parser/DLangParser.tok must not...