[Oorexx-devel] Possible problem with .nil comparisons

2012-08-27 Thread Mark Miesfeld
In trunk, this .nil comparison fails: id = 120 do while (id \= .nil) say id id += 1 if id 125 then leave end say 'out of loop, id:' id Yields: out of loop, id: 120 While the strict comparison works: id = 120 do while (id \== .nil) say id id += 1 if id 125

Re: [Oorexx-devel] Possible problem with .nil comparisons

2012-08-27 Thread Rick McGuire
H, I thought I had complete coverage in the test cases...must have missed one. Ok, I'll take care of it. Rick On Mon, Aug 27, 2012 at 7:18 PM, Mark Miesfeld miesf...@gmail.com wrote: In trunk, this .nil comparison fails: id = 120 do while (id \= .nil) say id id += 1

Re: [Oorexx-devel] Possible problem with .nil comparisons

2012-08-27 Thread Rick McGuire
I did have good coverage, but forgot about the Integer and NumberString classes. This should be fixed now. Rick On Mon, Aug 27, 2012 at 7:25 PM, Rick McGuire object.r...@gmail.com wrote: H, I thought I had complete coverage in the test cases...must have missed one. Ok, I'll take care of