Is the `-Xdebug` compiler argument still used? I s...
# compiler
e
Is the
-Xdebug
compiler argument still used? I see a comment that says "no-op in 2.2+". Just want to be 100% sure.
d
As I can see, all it's usages are checked together with check for
JvmNullOutSpilledCoroutineLocals
language feature (using
||
), which is enabled by default since 2.2 (KT-63720). So yes, enabling the flag does nothing.
e
Thank you!