:wave: Does private mutable property (`private var...
# compose
h
👋 Does private mutable property (
private var
) affect class stability?
🚫 1
z
I think so, yes. A private mutable field can be changed without notifying composition, so the compiler can’t guarantee the contract.
The best way to be sure is to turn on compiler reports and see what the compiler thinks