started first kotlin project, want to fix an issue...
# announcements
a
started first kotlin project, want to fix an issue with an existing intellij plugin. when i run
./gradlew compileTestKotlin
i get unresolved reference errors
Copy code
e: .../intellij-makefile/src/test/kotlin/MakefileParserTest.kt: (2, 37): Unresolved reference: MakefileParserDefinition
e: .../intellij-makefile/src/test/kotlin/MakefileParserTest.kt: (4, 60): Unresolved reference: MakefileParserDefinition
e: .../intellij-makefile/src/test/kotlin/MakefileStructureViewTest.kt: (3, 37): Unresolved reference: MakefileStructureViewElement
e: .../intellij-makefile/src/test/kotlin/MakefileStructureViewTest.kt: (14, 32): Unresolved reference: MakefileStructureViewElement
i’m having trouble understanding the meaning of these errors.
MakeFileParserTest.kt
has
import name.kropp.intellij.makefile.MakefileParserDefinition
, and this is a valid import path AFAIK. my fork is hosted on github here: https://github.com/ags799-org/intellij-makefile/ my branch is
ags799/12
. would greatly appreciate any help. i hope to fix a bug in this plugin soon