Skip to content

Commit

Permalink
GtPharoMethodCoder>>addConvertEqualsToSameContentAsFor:to: ensure nod…
Browse files Browse the repository at this point in the history
…e is a message send
  • Loading branch information
akgrant43 committed Nov 6, 2024
1 parent 6e32062 commit 19e8fb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Extension { #name : #GtPharoMethodCoder }
{ #category : #'*GToolkit-Pharo-StrictSymbolComparison' }
GtPharoMethodCoder >> addConvertEqualsToSameContentAsFor: aNode to: coderAddOns [

aNode selector == #= ifFalse: [ ^ self ].
(aNode isMessage and: [ aNode selector == #= ]) ifFalse: [ ^ self ].
coderAddOns
addContextMenuItem: (self
createLabel: ('Convert ' asRopedText,
Expand Down

0 comments on commit 19e8fb0

Please sign in to comment.