Re: [Pharo-dev] Critiques - Temporaries read before written.

2018-04-16 Thread John Brant
On 04/15/2018 05:02 PM, Ben Coman wrote: > On 16 April 2018 at 03:07, Denis Kudriashov wrote: >> >> >> >> 2018-04-15 20:40 GMT+02:00 Martin McClure : >>> >>> On 04/15/2018 07:42 AM, Ben Coman wrote: >>> >>> The greater prominence of Critiques in

Re: [Pharo-dev] Critiques - Temporaries read before written.

2018-04-15 Thread Ben Coman
On 16 April 2018 at 03:07, Denis Kudriashov wrote: > > > > 2018-04-15 20:40 GMT+02:00 Martin McClure : >> >> On 04/15/2018 07:42 AM, Ben Coman wrote: >> >> The greater prominence of Critiques in Calypso >> encourages me to try to clean them out. >> >>

Re: [Pharo-dev] Critiques - Temporaries read before written.

2018-04-15 Thread Eliot Miranda
Hi Martin, > On Apr 15, 2018, at 11:40 AM, Martin McClure wrote: > >> On 04/15/2018 07:42 AM, Ben Coman wrote: >> The greater prominence of Critiques in Calypso >> encourages me to try to clean them out. >> >> I bumped into a false positive "Temporaries read before

Re: [Pharo-dev] Critiques - Temporaries read before written.

2018-04-15 Thread John Brant
> On Apr 15, 2018, at 9:42 AM, Ben Coman wrote: > > The greater prominence of Critiques in Calypso > encourages me to try to clean them out. > > I bumped into a false positive "Temporaries read before written." > that I've condensed to the following example. > >

Re: [Pharo-dev] Critiques - Temporaries read before written.

2018-04-15 Thread Denis Kudriashov
2018-04-15 20:40 GMT+02:00 Martin McClure : > On 04/15/2018 07:42 AM, Ben Coman wrote: > > The greater prominence of Critiques in Calypso > encourages me to try to clean them out. > > I bumped into a false positive "Temporaries read before written." > that I've condensed to

Re: [Pharo-dev] Critiques - Temporaries read before written.

2018-04-15 Thread Martin McClure
On 04/15/2018 07:42 AM, Ben Coman wrote: > The greater prominence of Critiques in Calypso  > encourages me to try to clean them out. > > I bumped into a false positive "Temporaries read before written." > that I've condensed to the following example. > >     test >         |x| >         [ x := nil

Re: [Pharo-dev] Critiques - Temporaries read before written.

2018-04-15 Thread Cyril Ferlicot
On dim. 15 avr. 2018 at 16:43, Ben Coman wrote: > The greater prominence of Critiques in Calypso > encourages me to try to clean them out. > > I bumped into a false positive "Temporaries read before written." > that I've condensed to the following example. > > test >

[Pharo-dev] Critiques - Temporaries read before written.

2018-04-15 Thread Ben Coman
The greater prominence of Critiques in Calypso encourages me to try to clean them out. I bumped into a false positive "Temporaries read before written." that I've condensed to the following example. test |x| [ x := nil ] whileNil: [ x ifNil: [ x := 1] ] Now before I log an