BUG: PositionableStream<<position: (wrong error message)

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

BUG: PositionableStream<<position: (wrong error message)

Christopher J. Demers
The error message displayed when an out of bounds position is set via
PositionableStream<<position: is wrong, the message displays the current
position rather than the bad position.

I think the statement:
^self errorSubscriptBounds: position.
should be:
^self errorSubscriptBounds: anInteger.

Chris