I am working on a custom language, called Nabu. for the JVM.
Classes defined in Nabu can be used from Java and visa versa.
I want to create an Intellij plugin for it.
What do I need to implement so that Intellij can resolve classes like in imports and such?
I have an Java source file with the following import:
import bar.Dummy;
The Dummy class can’t be resolved (shown in red), the Dummy class is defined in a Nabu source file.
What do I need to implement, which extension(s)?