[Seaside] [VW] Bug in WAModelProxy

Michel Bany m.bany at wanadoo.fr
Tue Nov 29 08:04:30 CET 2005


Martin J. Laubach a écrit :

>   I guess this is a difference between Squeak and VW: I needed to
> modify WAModelProxy as below to actually work (ie. things written
> to the proxy can be read out again).
>
>   Is that correct?
>
>         mjl
>
I think you are right, this is a difference between Squeak and VW.
The issue you are raising is the result of
    'abc' = #abc
evaluating to true in Squeak and false in VW.
I will add a fix to the VW port. It might make it in the next VW release.
Michel.

>
> WAModelProxy>>doesNotUnderstand: aMessage
>         ^ aMessage selector isUnary
>                 ifTrue: [self performRead: aMessage selector asSymbol]
>                                                     ========
>                 ifFalse:
>                         [(aMessage selector isKeyword and: [aMessage  
> arguments size = 1])
>                                 ifTrue: [self performWrite:  (aMessage 
> selector allButLast asSymbol) with: aMessage argument]
>                                                                       
> = =======
>                                 ifFalse: [super doesNotUnderstand:  
> aMessage]]
>
>
>
> _______________________________________________
> Seaside mailing list
> Seaside at lists.squeakfoundation.org
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>



More information about the Seaside mailing list