kotlin-power-assert
kotlin-power-assert copied to clipboard
Kotlin compiler plugin to enable diagrammed function calls in the Kotlin programming language
Kotlin 1.7 no longer requires a separate plugin artifact for compiling with Kotlin/Native. Remove this entire module and referencing code from the Gradle plugin.
Hi! Thanks for the awesome plugin! Is Kotest assertions support planned somewhere in the future?
everything works fine when building with gradle, but when i configure Idea to use its internal JPS build system (which is sometimes faster) it seems to use a different compiler...
Currently the layout for the function call diagram is hardcoded in the plugin. This means that users of this compiler plugin have no way to customize the look of the...
Thanks for this plugin! I'll figure this out for myself, but it would be helpful if `README.md` included instructions for Maven as well as Gradle.
``` plugins { id 'org.jetbrains.kotlin.jvm' version '1.4.30' id("com.bnorm.power.kotlin-power-assert") version "0.7.0" } ``` produces this on compilation ``` Kotlin: [Internal Error] java.lang.IllegalStateException: The provided plugin com.bnorm.power.PowerAssertComponentRegistrar is not compatible with this...
Right now this compiler plugin supports diagramming a function if it can be called with parameters of either the following 2 forms: - `function(Boolean, String)` - `function(Boolean, () -> String)`...
I understand that the plugin doesn't support `Kotlin 2.x` officially, but things have been working fine until `2.0.0-Beta1` and it throws the following error with the latest update. I am...