Corrupted sources?!

David T. Lewis lewis at mail.msen.com
Mon Oct 29 00:14:31 UTC 2001


On Sun, Oct 28, 2001 at 06:24:00PM -0500, Kevin Fisher wrote:
> 
> Today, I wanted to look at Dictionary>>includesKey:.   When I brought it
> up in the browser, I got a large message informing me that my SqueakV3.sources
> "may" be corrupt, along with an explanation about how this may have happened.
> 
> Can anyone else out there running 3.1beta on Linux give this a try?  Just
> click on Dictionary>>includesKey: in the browser...

I don't see the problem on Squeak3.1beta latest update: #4411.

$ ls -l *sources
-r--r--r--   1 lewis    users    14542313 Mar 11  2001 SqueakV3.sources
$ cksum *sources
3417810574 14542313 SqueakV3.sources
$ wc *sources
     32 1898349 14542313 SqueakV3.sources

In case you need the actual method source:
includesKey: key 
	"Answer whether the receiver has a key equal to the argument, key."
	
	self at: key ifAbsent: [^false].
	^true





More information about the Squeak-dev mailing list