Method.st
changeset 17173 e8fd5eb30331
parent 17159 09ed151b3ea5
child 17175 9b51d2509e65
equal deleted inserted replaced
17172:86f49d251345 17173:e8fd5eb30331
   983 
   983 
   984     "Created: / 02-07-2010 / 22:33:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   984     "Created: / 02-07-2010 / 22:33:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   985     "Modified: / 11-07-2010 / 19:38:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   985     "Modified: / 11-07-2010 / 19:38:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   986     "Modified (format): / 18-11-2011 / 14:47:06 / cg"
   986     "Modified (format): / 18-11-2011 / 14:47:06 / cg"
   987 ! !
   987 ! !
       
   988 
   988 
   989 
   989 !Method methodsFor:'accessing-visibility'!
   990 !Method methodsFor:'accessing-visibility'!
   990 
   991 
   991 isIgnored
   992 isIgnored
   992     "return true, if this is an ignored method.
   993     "return true, if this is an ignored method.
  2733     ^ self parse:#'parseMethodSilent:in:' with:self mclass return:#messagesPossiblySent or:#()
  2734     ^ self parse:#'parseMethodSilent:in:' with:self mclass return:#messagesPossiblySent or:#()
  2734 
  2735 
  2735     "
  2736     "
  2736      (Method compiledMethodAt:#printOn:) messagesSent
  2737      (Method compiledMethodAt:#printOn:) messagesSent
  2737      (Point compiledMethodAt:#x:) messagesSent
  2738      (Point compiledMethodAt:#x:) messagesSent
       
  2739 
       
  2740      (WindowEvent class compiledMethodAt:#focusInView:) messagesSent  
       
  2741      (WindowEvent class compiledMethodAt:#focusInView:) messagesPossiblySent  
       
  2742 
       
  2743      (Method compiledMethodAt:#messagesPossiblySent) messagesSent  
       
  2744      (Method compiledMethodAt:#messagesPossiblySent) messagesPossiblySent 
  2738     "
  2745     "
  2739 !
  2746 !
  2740 
  2747 
  2741 messagesSent
  2748 messagesSent
  2742     "return a collection with the message selectors sent to by the receiver.
  2749     "return a collection with the message selectors sent to by the receiver.
  3606     ^ modifiedInstVars includes:instVarName.
  3613     ^ modifiedInstVars includes:instVarName.
  3607 
  3614 
  3608     "Created: / 23-07-2012 / 11:16:36 / cg"
  3615     "Created: / 23-07-2012 / 11:16:36 / cg"
  3609 ! !
  3616 ! !
  3610 
  3617 
       
  3618 
  3611 !Method methodsFor:'source management'!
  3619 !Method methodsFor:'source management'!
  3612 
  3620 
  3613 revisionInfo
  3621 revisionInfo
  3614     "cg: is this correct for extensions? (shouldn't this be the revisionInfo from the extensions container)"
  3622     "cg: is this correct for extensions? (shouldn't this be the revisionInfo from the extensions container)"
  3615 
  3623 
  3853 ! !
  3861 ! !
  3854 
  3862 
  3855 !Method class methodsFor:'documentation'!
  3863 !Method class methodsFor:'documentation'!
  3856 
  3864 
  3857 version
  3865 version
  3858     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.442 2014-11-28 16:11:00 cg Exp $'
  3866     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.443 2014-12-02 16:29:06 cg Exp $'
  3859 !
  3867 !
  3860 
  3868 
  3861 version_CVS
  3869 version_CVS
  3862     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.442 2014-11-28 16:11:00 cg Exp $'
  3870     ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.443 2014-12-02 16:29:06 cg Exp $'
  3863 !
  3871 !
  3864 
  3872 
  3865 version_SVN
  3873 version_SVN
  3866     ^ '$ Id: Method.st 10648 2011-06-23 15:55:10Z vranyj1 $'
  3874     ^ '$ Id: Method.st 10648 2011-06-23 15:55:10Z vranyj1 $'
  3867 ! !
  3875 ! !