1 Commits
Author SHA1 Message Date
ozdemirsarman d1f303e237 fix(swift): extract computed & observed properties (#2181)
function_types only recognised func/init/deinit/subscript, so computed properties (var body: some View { ... }) and willSet/didSet observers produced no node and their bodies were never walked — erasing the whole SwiftUI view layer. Emit a function-like member node for them and defer the body to the call-walk via function_bodies; stored properties are unchanged. Adds tests.
2026-07-27 10:22:48 +01:00