[eCompletion add] Bug in SHRange

Mathieu Suen mathieusuen at yahoo.fr
Tue Sep 19 22:38:07 UTC 2006


Hi,

There is a litle bug in SHRange>>#isBlockTemporary

isBlockTemporary
	^#(##blockPatternTempVar #blockPatternArg) includes: type

should be ->

isBlockTemporary
	^#(#blockPatternTempVar #blockPatternArg) includes: type

This will not work with the NewCompiler but the old let it pass.

	Math
-------------- next part --------------
'From Squeak3.9gamma of ''23 July 2006'' [latest update: #7058] on 20 September 2006 at 12:35:58 am'!

!SHRange methodsFor: '*ecompletion' stamp: 'ms 9/20/2006 00:34'!
isBlockTemporary
	^#(#blockPatternTempVar #blockPatternArg) includes: type! !


More information about the Squeak-dev mailing list