https://github.com/uko/deprecationassistant
tooling to help dealing with deprecations on Pharo
https://github.com/uko/deprecationassistant
Last synced: 6 months ago
JSON representation
tooling to help dealing with deprecations on Pharo
- Host: GitHub
- URL: https://github.com/uko/deprecationassistant
- Owner: Uko
- Created: 2016-03-18T22:02:21.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-21T10:45:27.000Z (over 10 years ago)
- Last Synced: 2025-06-28T07:07:12.544Z (about 1 year ago)
- Language: Smalltalk
- Homepage:
- Size: 2.92 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DeprecationAssistant
Have it happened to you that someone had deprecated a method that you are using? Then you are getting a deprecation warning. And probably you've noticed that quite often the body of a deprecated method contains the actual call to the new implementation. In this case you may be thinking: why something cannot just copy the body of the deprecated method into the place where I call it?

Well, this is exactly what DeprecationAssistant is there for. It adds new debug action buttons that allow you to inline the body of a deprecated method in the place where you are calling it from.
## Installing
Available from catalog browser or
Metacello new
repository: 'github://Uko/DeprecationAssistant';
baseline: 'DeprecationAssistant';
load