The future of Morphic (Re: [squeak-dev] SimpleMorphic Editors)

Edgar J. De Cleene edgardec2005 at gmail.com
Sat Apr 2 15:34:30 UTC 2011




On 4/2/11 11:21 AM, "Juan Vuletich" <juan at jvuletich.org> wrote:

> Hi Edgar,
> 
> Cuis doens't have a different compiler. It uses the same compiler as
> Squeak, and I keep it updated. I'm pretty sure any problems you might
> find is not because of the compiler.
> 
> What specific problems have you found?
> 
> Cheers,
> Juan Vuletich

>From Cuis 3.1

Object subclass: #Compiler
    instanceVariableNames: 'sourceStream requestor class category context
parser sourceStreamGetter'
    classVariableNames: ''
    poolDictionaries: ''
    category: 'Compiler-Kernel'

>From Squeak4.3-11203.image updated to this morning

Object subclass: #Compiler
    instanceVariableNames: 'sourceStream requestor class category context
parser'
    classVariableNames: ''
    poolDictionaries: ''
    category: 'Compiler-Kernel'

I found in Cuis reference to sourceStreamGetter  and must fileOut and fileIn
in Squeak

'From Cuis 3.1 of 4 March 2011 [latest update: #850] on 28 March 2011 at
8:40:12 am'!

!Compiler methodsFor: 'public access' stamp: 'jmv 3/18/2010 22:38'!
sourceStreamGetter: aSymbol
    sourceStreamGetter _ aSymbol! !

'From Cuis 3.1 of 4 March 2011 [latest update: #850] on 1 April 2011 at
7:47:49 am'!

!Parser methodsFor: 'public access' stamp: 'jmv 8/28/2010 10:47'!
sourceStreamGetter: aSymbol
    "Cuis specific. Do not remove!!"
    sourceStreamGetter _ aSymbol! !


Just now not remember the cause of the dnu, but hope you see the
difference....

Edgar





More information about the Squeak-dev mailing list