Evgeny Mandrikov
Evgeny Mandrikov
Yes, I can elaborate: consumer of "subSequence" instead creation of copy keeps reference on result as is, and result survives multiple parses of different files, accumulating content of those files...
Creation of String - is a copy-on-read, which might be undesirable in scenarios, where expected that method "subSequence" guarantees constant time. That's why I asked to provide usage scenarios, which...
Ok, excuse me, usage of `Pattern` within SSLR doesn't require this.
`kotlinx.coroutines.debug.internal.ByteBuddyDynamicAttach.attach` mentioned in your stacktrace [has following implementation](https://github.com/Kotlin/kotlinx.coroutines/blob/1.6.4/kotlinx-coroutines-debug/src/internal/Attach.kt#L20-L30): ``` val cl = Class.forName("kotlin.coroutines.jvm.internal.DebugProbesKt") val cl2 = Class.forName("kotlinx.coroutines.debug.internal.DebugProbesKt") ByteBuddy() .redefine(cl2) .name(cl.name) .make() .load(cl.classLoader, ClassReloadingStrategy.fromInstalledAgent()) ``` * `redefine(cl2)` loads bytes of class...
@lolo101 your approach seems correct to me - at least I don't see other way for JaCoCo to distinguish between exhaustive switch generated by compiler and non-exhaustive switch written by...
And our [CI shows](https://dev.azure.com/jacoco-org/JaCoCo/_build/results?buildId=1457&view=results) that when using JDK versions from 14 to 16 default branch will have node of type `LINE` corresponding to the line number of `switch`.
@mreichenbach-igniti See https://www.jacoco.org/jacoco/trunk/doc/faq.html > ### When will feature X be released? > **JaCoCo is maintained by volunteers in their free time. Since we cannot guarantee free capacity, we do not...
@leslieli yes, this definitely helps Execution of ``` git clone https://github.com/leslieli/JacocoDebug.git cd JacocoDebug git checkout a3e7b21740f37319632b08377c1b79fb2076396a mvn compile javap -v -p target/classes/com/jacdebuger/util/Utils.class ``` shows that curly brace on line number...
@marchof I updated this PR to the most recent https://openjdk.org/jeps/433
> I wonder whether we still want to provide Eclipse .project and .classpath files like for the other projects Oops, I have them locally, but forgot to commit, because I...