can kotlin jvm be told to write out parameter name...
# announcements
x
can kotlin jvm be told to write out parameter names? equivalent to the way java 8+ can?
n
i am confused to what this refers to, can you give a example ?
c
I think he's referring to variable names being present in bytecode, so they don't show up as
p0
,
p1
, ... when decompiled
x
yes, and also they have a reflection api
n
i think the kotlin parameter names can be not valid identifiers for java..
i
You can use
-java-parameters
compiler option
👍 2