Jeff Zoch
Jeff Zoch
Im finding that the order I declare my delegates in a parser grammar affects whether or not it parses. I have a grammar like the following: ```kotlin internal class Parser:...
I recently added bulk insert (had a previous issue about how to do so) and it compiles fine and works with an h2 database. I tried using an oracle database...
The following code was previously used for KotlinEntityDataStore, but I wanted to try out the reactive version: ``` ds.update(type = Ticket::class) .set(Ticket::status,TicketStatus.IN_PROGRESS) .where(blah blah).get().value() ``` This previously worked, but with...
1. Cannot complete type inference between Iterable and List when doing bulk insert on a stream. Here is a dummy example that fails. ``` ds.insert(ticketBuilders.map{ ticketBuilder -> Ticket( name =...
Inline classes are an experimental yet widely used feature that should be enabled given that there is currently no way to pass flags to kotlinc via kotlin_rules. This will allow...
My teammates have been facing this issue with rules_kotlin where kotlinx libs aren't imported by intellij. Sometimes a sync fixes it but for others they had to patch intellij's bazel...
I have a mixed Java + Kotlin project where the java code uses some lombok annotations. None of the kotlin code depends on these lombok annotations, so with maven and...
Hoping to try this out in bazel - has anyone tried this before?
```starlark IO_GRPC_GRPC_KOTLIN_ARTIFACTS = [ "com.google.guava:guava:29.0-jre", "com.squareup:kotlinpoet:1.5.0", "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5", "org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.3.5", ] ``` has a few pretty old versions with breaking changes occurring in channel apis. I get errors when trying to use...
I currently use a library that exposes a logrus.Entry and would love to use lg with it but currently the redirect only accepts a logrus.Logger. They seem to have basically...