OliverO2
OliverO2
Do I understand correctly that the case for using a single-dollar prefix `$"""..."""` is now moot since the quote interpretation rule change has gone? If so, wouldn't it be reasonable...
From a plugin user perspective, I would not differentiate between platforms. For example, I have a YAML server-side logging configuration, which is directly applied at the backend, and transmitted to...
It seems that `qualifiedSurroundingClassName` is similar to `__TYPE__`, except that it does not rely on visitor tracking, but asks the compiler directly at retrieval time. So it always returns a...
Oh, I forgot: For the above code to work, it needs to be supplemented with these extension functions: ```kotlin private fun IrSymbolOwner?.qualifiedClassName(): String? = when (this) { is IrFile ->...
So it was actually me creating a name for that fictious file-level class, regardless of whether such a class is actually generated or not.
Did you try `inline fun test(lineNumber: Int = __LINE__)`?
On the JVM, you can actually log a call-site line number without any plugin support. One way of doing this is throwing an exception, then examine its stack trace and...
@Kantis I agree that this would be the most appropriate solution. However, it's complicated and probably not worth the effort: * Kotest converts JUnit 5 selectors into its own selectors....
@mightyguava FYI: Once this fix is released you can use Kotest with `maxParallelForks > 1` without any extra configuration. It should work properly out of the box for all known...
Not to my knowledge.