Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude non-proxyable interface methods
Two changes need to be made to `InterfaceMembersCollector`: 1. `AcceptMethod` needs to be called with `onlyVirtuals: true`, so that it will filter out non-overridable methods during pre-screening. 2. For such filtered-out methods, it needs to return `null` in order to avoid `MinimalisticMethodGenerator` (which would mark the method it creates as an override). These changes have been copied from `ClassMembersCollector`. Note that the two classes are now almost identical.
- Loading branch information