Commits

David Farler committed ed599c15168
Add LatePartialSuperEmitter to short circuit emission of curry thunks We're eventually getting rid of general currying syntax so, rather than investing in getting partial application of super_method working with the existing curry thunk emission, create a specialized emitter for the one case where we'll allow partial application: capturing the implicit self parameter in expressions like `doFoo(super.foo)` or `doFoo(self.foo)`. NFC for current IRGen - SILGen doesn't lead to here yet. rdar://problem/22749732