so, it’s actually captured? But why compiler don’t show me the warning “add “self.” to make capturing explicitly”? If I add @escaping or make a nested function - I’ll see it.
Non-escaping closures are executed synchronously with respect to their call site. It is thus unnecessary to worry about retain cycles, and the compiler does not force you to declare your intent with respect to the capturing of self.