Closed amorde closed 2 years ago
Similar to #202
Input:
- (void)someFunction; { id<SomeProtocol> value = [self makeSomeValue]; }
Result:
func someFunction() { weak var value = makeSomeValue() }
@amorde Fixed (the changes will be available since the next converter update).
Converter output:
func someFunction() { let value = makeSomeValue() }
Similar to #202
Input:
Result: