net.akehurst.language icon indicating copy to clipboard operation
net.akehurst.language copied to clipboard

Generic Language (DSL) support for kotlin multiplatform (parser, syntax-analyser, formatter, processor, etc)

Results 5 net.akehurst.language issues
Sort by recently updated
recently updated
newest added

I'm trying to migrate from version 3.5.2 to 4.0.1 but with how things have been re-organised I'm not sure if some features have been removed or I just can't figure...

I wanted to upgrad from 3.5.2 to to 4.0.0 by changing the lines in my `build.gradle.kts` file. I changed the line ``` // from // implementation("net.akehurst.language:agl-processor:3.5.2") // to implementation("net.akehurst.language:agl-processor:4.0.0") ```...

Hi there, i just wanted to ask if you're aware that your 2 articles on medium are now behind a paywall, which leads to the unfortunate situation that "most" of...

implement better error reporting

enhancement

Consider this very simple grammer: ``` namespace org.example.brackets.agl grammar Brackets { sentence = '[' 'x' ']'; skip WHITESPACE = "\s+"; } ``` And this Java program that uses it to...