Method.st
changeset 24874 1042862ccfb2
parent 24816 cacdb796b977
child 24883 1093edda36a7
equal deleted inserted replaced
24873:facc770e31be 24874:1042862ccfb2
  2919     "
  2919     "
  2920 !
  2920 !
  2921 
  2921 
  2922 messagesSent
  2922 messagesSent
  2923     "return a set-like collection with the message selectors sent by the receiver.
  2923     "return a set-like collection with the message selectors sent by the receiver.
  2924      Uses Parser to parse methods source and extract the names.
  2924      Uses Parser to parse method's source and extract the names.
  2925      The returned collection includes all used message selectors 
  2925      The returned collection includes all used message selectors 
  2926      (i.e. including super-send messages)"
  2926      (i.e. including super-send messages)"
  2927 
  2927 
  2928     ^ self parse:#'parseMethodSilent:in:' with:self mclass return:#messagesSent or:#()
  2928     ^ self parse:#'parseMethodSilent:in:' with:self mclass return:#messagesSent or:#()
  2929 
  2929