StéphaneDucasse

Results 1102 comments of StéphaneDucasse

We should check first extractRefactoring in particular the extractMethodTransformation Then the inlineRefactoring and its transformation.

issue still there in P13 and can be done easily.

So we should discuss with balsa.

Done now should do a post integration phase

And now my code is ``` accessingSharedVariable ^ Shared1 ``` So the variable is used.

To me RBClass>>bindingOf: aString is wrong ``` bindingOf: aString ^self realClass classPool associationAt: aString asSymbol ifAbsent: [self realClass classPool associationAt: aString asString ifAbsent: [nil]] ``` Because it does not look...

``` whichSelectorsReferToClassVariable: aString | selectors | selectors := Set new. newMethods ifNotNil: [ newMethods do: [ :each | (each refersToVariable: aString) ifTrue: [ selectors add: each selector ] ] ]....