Dennis Rieks

Results 69 comments of Dennis Rieks

@ShikaSD pointed me to [antlr-optimized](https://github.com/tunnelvisionlabs/antlr4), so I implemented support for this antlr fork in `kotlinx.ast`. But sadly, it is not as fast as hoped. I will try to implement a...

The time for `./gradlew clean check` was reduced from 3min 30s in commit c7dd6bbd5419789a7feba0d68cf6f1f326197103 to 2min 30s in commit f088b3cf8de0817e9f235c0b53e0923127956b22. because of this, all kotlin files will now be scanned...

build time for commit 95db180495bb46afe42767191996e3cd49cd96cf is 44s, so we can assume that testing the previusly excluded files takes around 1 minute 45s. - KotlinLexer.kt - KotlinParser.kt - UnicodeClasses.kt

Hi @vinaysshenoy, yes, this library only supports parsing of kotlin code. Sadly, I have no time to implement transformation or writing logic. In my private project, a small meta programming...

Hi @henrikbarium, thank you for reporting, I will fix it.

Hi @henrikbarium, code blocks are currently not supported. I can try to add a "by" marker to `KlassDeclaration`, but the function invocation `lazy { 42 }` can not be expressed...

Hi, this would be great! I'm currently working on #89. Unfortunately I don't have much time for this at the moment, but feed free to ask any question! I already...

Hi @birajpatel, I pushed master to the feature branch.. now the correct commit should be visible :) Yes, this download problem is the reason for #89, I will try to...

Maybe it's possible that schema also has extensions, using `schema.setExtensions(extensions);` should not overwrite them.

Hi @martinflorek, maybe my Kotlin parsing library can help you: https://github.com/kotlinx/ast It is a generic AST parsing library, Kotlin is currently the only supported language. The library is designed that...