Philip Wedemann
Philip Wedemann
https://github.com/Kotlin/dukat/releases/tag/v0.5 this tag is also wrong, should be v0.5.8-rc2
Please make it clear in the Readme. Kotlin does support other targets than the JVM and it would be nice, if others targets could benefit from a binary validator plugin...
Changing the pom files of the libraries is only possible if it is merged, the library is updated regularly and you can use this new version. This is not always...
I did try it, but I failed. First try was to get rid of the `project` property during TaskAction and use injection to get the properties. ```kotlin internal open class...
Yes, they are host variables. For embeddedSQL you need a precompiler which has access to the host variables and bind these variables into the sql query and write the result...
Added the host variable rule, nice idea! Works also better with sqldelight class generating `SET :FOO, :BAR = ABS(?), :A;`
good question. It is part of the sql standard, but is optional and only available if you have a pre-compiler. And sqlite does not support this precompiler too. Then we...
Personally, I think the reason to remove this syntax from sql-psi is okay cause it is very uncommon. Let's create a ticket if somebody else wants this feature too. In...
I think, it has to be added to the postgresql dialect. See `date_trunc` for an example: https://github.com/cashapp/sqldelight/pull/3295/files
Not related to Compose, but simple JS file api: ```kotlin @Composable fun Upload(title: String, onDone: (ByteArray) -> Unit) { Column { var uploadButton: HTMLInputElement? = null Input(type = InputType.File) {...