gtoolkit icon indicating copy to clipboard operation
gtoolkit copied to clipboard

Improve the support for exploring deprecated GT classes

Open chisandrei opened this issue 3 years ago • 1 comments

chisandrei avatar Jun 21 '22 14:06 chisandrei

Here's a script to return them in order of date deprecated.

| repo |
((SystemNavigation default allImplementorsOf: #isDeprecated)
	collect: [ :each | 
		([ repo := IceRepository registeredRepositoryIncludingPackage: each package.
		log := IceLibgitTonelLog for: repo.
		(log historyOfMethod: each) first datetime ] onErrorDo: [ :ex | nil ])
			-> each printString ]
	thenSelect: [ :each | each key notNil ]) asSortedCollection

refactoringdr avatar Jun 21 '22 14:06 refactoringdr

Current support:

Screenshot 2023-01-02 at 16 26 15 Screenshot 2023-01-02 at 16 26 50 Screenshot 2023-01-02 at 16 28 51

chisandrei avatar Jan 02 '23 15:01 chisandrei