On my way down to plugins, I fixed a tiny mistake in VMMaker

Niko Schwarz niko.schwarz at gmx.net
Wed Jul 12 21:55:44 UTC 2006


I tried to understand slang, and walked some meters through VMMaker. I 
had a fresh 3.8 basic image running and the current VMMaker installed 
and guess what: VMMaker didn't work!

That is: VMMaker openInWorld wouldn't run, and VMMaker default wouldn't 
run either.

The problem was that VMMaker called an unexisting method "wordSize". I 
hope I fixed it, here's a changeset.

niko
-------------- next part --------------
'From Squeak3.8 of ''5 May 2005'' [latest update: #6665] on 12 July 2006 at 11:50:51 pm'!

!String methodsFor: 'converting' stamp: 'NES 7/12/2006 23:42'!
contains: aString
     "Answer, whether I contain aString, that is, whether aString is a bustring of myself."
    ^ ((self findString: aString) = 0) not! !


!VMMaker methodsFor: 'initialize' stamp: 'NES 7/12/2006 23:44'!
initialize
	logger := Transcript.
	inline := true.
	forBrowser := false.
	internalPlugins := SortedCollection new.
	externalPlugins := SortedCollection new.
	platformName := self class machinesDirName.
	is64BitVM := SmalltalkImage current platformSubtype contains: '64'.
	allFilesList := Dictionary new.
	interpreterClassName := Interpreter name! !



More information about the Squeak-dev mailing list