Netflix-Skunkworks / rewrite

Distributed code search and refactoring for Java
Apache License 2.0
290 stars 30 forks source link

findMethodCalls() should consider methods inherited from super-types #18

Open gunnarmorling opened 7 years ago

gunnarmorling commented 7 years ago

When looking for called methods declared by some type (cu.findMethodCalls( "com.example.MyType *(..)" )) it should be possible to match invocations of methods declared by a super-type of MyType (and not overridden by the same). Currently, it seems a second call passing the super-type is required.