Is there a practical way to get the sender of a message in Smalltalk without manually passing self as a Parameter?
To be more concrete: I want to add a class specific prefix to an ID that gets passed to my class, so if ClassA sends (on class side)
ClassB doSomethingWith: 'myId'.
ClassB should internally treat 'myId' as 'ClassB-myId' or something similar.
I have implemented this with an additional parameter which has to be self
ClassB doSomethingWith: 'myId' for: self.
but I would be very glad if there is a solution without this explicit send of self.