dooxe-creative
dooxe-creative
Hey, do you have any news about this issue ? I'm facing it right now : grammar variables identifiers are defined like Kotlin `val` in the generated code, and make...
I see. Is there a tutorial I can follow or a template I can use to configure my project to get the plugin from jitpack ?
Hi @ftomassetti , sadly I have no more luck with this configuration. The only version that is found by gradle is the `0.0.4`, all other versions found at https://jitpack.io/#com.strumenta/antlr-kotlin are...
Hi @ftomassetti, I have found out something interesting : for my build to work, I need to put the `repositories` gradle closure **inside** `buildscript` like that: build.gradle.kts ```kts ... buildscript...
Hi @ftomassetti , No, actually it's another problem: grammar actions expect the usage of context variables (therefore starting with `$`), to be directly followed by `.something`. So when one tries...
I finally found a workaround to this problem, not much pretty, but it's working: this doesn't work ``` $value.value = $v?.value // action parser expect $value.value = $v.value ``` but...