[eCompletion add] Bug in SHRange

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

[eCompletion add] Bug in SHRange

Mathieu Suen-2
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

'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! !


Reply | Threaded
Open this post in threaded view
|

Re: [eCompletion add] Bug in SHRange

Ruben Bakker
Hi Mathieu,

The fix checked in at squeaksource. Thanks for reporting the bug!!

Ruben

On 9/20/06, Mathieu Suen <[hidden email]> wrote:

> 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
>
>
> '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! !
>
>
>
>
>
>