Message.st
changeset 85 1343af456e28
parent 56 be0ed17e6f85
child 88 81dacba7a63a
equal deleted inserted replaced
84:1eba5946aea2 85:1343af456e28
    27 passed to doesNotUnderstand:aMessage as argument.
    27 passed to doesNotUnderstand:aMessage as argument.
    28 
    28 
    29 This allows for re-evaluation of the failed send (after some cleanup).
    29 This allows for re-evaluation of the failed send (after some cleanup).
    30 As an example of its use, see the implementation of the Autoload-class.
    30 As an example of its use, see the implementation of the Autoload-class.
    31 
    31 
    32 $Header: /cvs/stx/stx/libbasic/Message.st,v 1.6 1994-02-25 13:00:38 claus Exp $
    32 $Header: /cvs/stx/stx/libbasic/Message.st,v 1.7 1994-06-02 11:20:49 claus Exp $
    33 '!
    33 '!
    34 
    34 
    35 !Message class methodsFor:'instance creation'!
    35 !Message class methodsFor:'instance creation'!
    36 
    36 
    37 selector:aSymbol
    37 selector:aSymbol
    75 
    75 
    76 sendTo:aReceiver
    76 sendTo:aReceiver
    77     "send the selector with argument to a receiver"
    77     "send the selector with argument to a receiver"
    78 
    78 
    79     aReceiver perform:selector withArguments:args
    79     aReceiver perform:selector withArguments:args
       
    80 !
       
    81 
       
    82 reinvokeFor: aReceiver
       
    83     "send the selector with argument to a receiver.
       
    84      Same as sendTo: - for GNU-ST compatibility."
       
    85     ^ self sendTo:aReceiver
    80 ! !
    86 ! !
    81 
    87 
    82 !Message methodsFor:'accessing'!
    88 !Message methodsFor:'accessing'!
    83 
    89 
    84 selector
    90 selector