"Ernest Micklei" <
[hidden email]> wrote in message
news:9hucm4$crhf$
[hidden email]...
> Because some of my methods are only sent by using reflection (perform:,
> perform:with:),
> the stripper exclude their implementation. Is there a way to tell the
> stripper to include those methods?
The image stripper (at least in D4) will preserve methods that one
#perform:'s, as long as the symbols appear as literals in at least one
method that is not itself stripped. Basically if the development environment
is able to find these references when you do a Method/References search,
then the image stripper should too.
If you are constructing symbols to perform (something to be avoided IMHO)
then you will need to make use of the 'must not strip' category as Ian
suggests, or alternatively create your own ImageStripper subclass and
override (for example) #requiredMethodCategories.
Regards
Blair