pharo icon indicating copy to clipboard operation
pharo copied to clipboard

Cleanup: could we simplify RGMethodDefinition>>#isExtension

Open astares opened this issue 2 years ago • 0 comments

I guess we could substitute the marked part in the method RGMethodDefinition>>#isExtension

image

with

self isExtensionMethod

as #isExtensionMethod is implemented as:

isExtensionMethod
	^ category beginsWith: '*'

astares avatar May 23 '22 19:05 astares