help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-smalltalk] Error in gst-convert due squeak/pharo code using classS


From: Holger Hans Peter Freyther
Subject: [Help-smalltalk] Error in gst-convert due squeak/pharo code using classSide
Date: Thu, 12 Aug 2010 03:39:54 +0800
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.7) Gecko/20100720 Fedora/3.1.1-1.fc13 Lightning/1.0b2 Thunderbird/3.1.1

Hi all,

the below code fails to be imported and I traced this down to the classSide
definition that is not present in GST. So should I add a
ClassDescription>>classSide [ ^ self class asMetaclass ] or try to replace the
classSide with class? Anyone knows what classSide is supposed to do?



SystemOrganization addCategory: #'PetitParser-Core'!

Object subclass: #PPFailure
        instanceVariableNames: 'message position'
        classVariableNames: ''
        poolDictionaries: ''
        category: 'PetitParser-Core'!

!PPFailure classSide methodsFor: 'instance creation' stamp: 'lr 5/5/2010 13:56'!
message: aString at: anInteger
        ^ self basicNew initializeMessage: aString at: anInteger! !



reply via email to

[Prev in Thread] Current Thread [Next in Thread]