doesn't include class extensions when determining if something is unused
Opened this issue · 3 comments
michaeleiselsc commented
when i try to find all unused classes, it tells me that one of them is not used when it clearly is. could it be that it's because the import for it is in a class extension, and so fui doesn't believe it's being imported at all? i typically have MyClass.h and MyClass_Private.h, and this private header which is a class extension is where it's imported
dblock commented
You could try to build a small unit test within this project that reproduces the problem, we can fix it from there.
michaeleiselsc commented
ah i see the issue now: one letter was lowercase that should have capitalized in the #import line. xcode doesn't care, but apparently fui does
dblock commented
And it probably shouldn't. Would love a fix for this!