does kotlin optimise multiple `val` property acces...
# random
r
does kotlin optimise multiple
val
property accesses (properties which do not use
get
) within a function? Not that I am concerned that it has any impact on performance, I am just curious. When I use the bytecode viewer it does not look like it.
d
Kotlin (almost certainly) doesn't. JVM (almost certainly) does.
1
r
you mean JIT will?
d
almost certainly
😂 1