[organizeDeclarations] A property with didSet is treated as computed #1947
Closed
Description
Properties with didSet are placed in the Computed Properties section.
// MARK: - Computed Properties
var foo: Bar = .baz {
didSet {
// Do some work
}
}
But they must be in the section of regular properties.