The value of the method name is at:put:

# denotes a Symbol, which is a subclass of String. The difference between the 
two is that two symbols with the same value will actually be the same object, 
while this is not necessarily the case with strings:

stringA := String newFrom: 'string'.
stringB := String newFrom: 'string'.
stringA == stringB
“false".

symbolA := Symbol newFrom: 'symbol'.
symbolB := Symbol newFrom: 'symbol'.
symbolA == symbolB
"true"

Cheers,
Doru


> On Oct 16, 2016, at 7:19 AM, CodeDmitry <dimamakh...@gmail.com> wrote:
> 
> So "at: x put: y" translates to a method named #at:put:(or "at:put:")?
> 
> |dict|
> dict := Dictionary new.
> dict at: 'foo' put: 'bar'.
> 
> So javascript equivalent would be(assuming the Dictionary object existed).
> 
> var dict;
> 
> dict = new Dictionary;
> dict['at:put:']('foo', 'bar');
> 
> 
> 
> --
> View this message in context: 
> http://forum.world.st/How-do-Smalltalk-disambiguate-messages-tp4918946p4918951.html
> Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
> 

--
www.tudorgirba.com
www.feenk.com

"The coherence of a trip is given by the clearness of the goal."






Reply via email to