mcpiroman
07/13/2023, 10:02 AMvar myReactiveProperty: Int
get() {
if (/*is-being-evaluated-by-IJ-debugger*/) {
return field
} else {
fireSideEffects()
return field
}
}
Although this is about my code, I think the same issue happens in Jetpack Compose when evaluating `MutableState`variables.Michael de Kaste
07/13/2023, 10:13 AMMichael de Kaste
07/13/2023, 10:14 AMmcpiroman
07/13/2023, 10:23 AMoverride fun toString() = "(Prop1=$myReactiveProperty, Prop2=$myReactiveProperty2)"
)
I'd like to see them in debugger too, but right now they trigger the side effects.