cocolabs / pz-zdoc

ZomboidDoc is a Lua library compiler for Project Zomboid.
GNU General Public License v3.0
26 stars 10 forks source link

Match API method return class by name #70

Closed matshou closed 3 years ago

matshou commented 3 years ago

API classes are currently compared under very strict matching rules where they must match paths exactly before they can be considered matching. This kind of strict matching should be made optional so that we can match more classes.

For example, a method will not match an API method if the return value class differs only in path. See: SoundManager#PlaySound(String,boolean,float,float) and Audio

matshou commented 3 years ago

This feature has been reworked and will be tracked as #75.