-
Notifications
You must be signed in to change notification settings - Fork 22
Closed
Labels
Description
At least Pharo and VASt now offer their custom deprecation mechanisms. It would be great if we could hook into this. Ideally this would allows to take advantage of platform integration features like:
- Our deprecated methods showing up as deprecated in the IDE.
- Automatic rewriting of senders.
Unfortunately at least the Pharo implementation does not seem very extensible.
CompiledMethod >> isDeprecated
^ self sendsAnySelectorOf: #(
#deprecated:
#deprecated:transformWith:
#deprecated:transformWith:when:
#deprecated:on:in:
#deprecated:on:in:transformWith:
#deprecated:on:in:transformWith:when:)VASt seems to use #deprecated: and #deprecated:in:
Reactions are currently unavailable