Closed rudro closed 1 year ago
Given a class like
class RootComponent { var message: String { let name: String = "Alice" return "Hello" + name } }
needle should only consider the message var. Unfortunately, today, the name var is also considered as a property available on RootComponent.
message
name
RootComponent
We need to limit the variable parsing to just one level to avoid this issue.
Given a class like
needle should only consider the
message
var. Unfortunately, today, thename
var is also considered as a property available onRootComponent
.We need to limit the variable parsing to just one level to avoid this issue.