Re: [Pharo-users] Code porting to Pharo 6.1-64

2018-07-05 Thread Marcus Denker
> On 5 Jul 2018, at 09:40, Guillermo Polito wrote: > > Hi Dario, > > Have you defined those methods in the class side? > > a) propertyAt: aKey ifAbsent: aBlock >^ self properties at: aKey ifAbsent: aBlock > b) propertyAt: aKey ifAbsentPut: aBlock >^

Re: [Pharo-users] Code porting to Pharo 6.1-64

2018-07-05 Thread Guillermo Polito
Hi Dario, Have you defined those methods in the class side? a) propertyAt: aKey ifAbsent: aBlock >^ self properties at: aKey ifAbsent: aBlock > b) propertyAt: aKey ifAbsentPut: aBlock >^ self properties at: aKey ifAbsentPut: aBlock > c) propertyAt

Re: [Pharo-users] Code porting to Pharo 6.1-64

2018-07-04 Thread dario.trussa...@tiscali.it
I wrong... the error is relative to my root class ... For this class i implemented the class method propertyAt: aKey ifAbsent: aBlock This is in conflict with : the Behavior originalName method implement:

[Pharo-users] Code porting to Pharo 6.1-64

2018-07-04 Thread dario.trussa...@tiscali.it
Ciao, i work to port some code from Pharo 4.0 to Pharo 6.1-64. My root class into Pharo 4.0 define the properties instance variable and some relative method: a) propertyAt: aKey ifAbsent: aBlock